_编程语言_C++_std

时间:2023-03-09 21:49:26
_编程语言_C++_std

正常使用

cout << "Count is "<<i<<endl;

含有std

std::cout << "Count is " << count << std::endl;

std 是一个类(输入输出标准),包括cin 成员和cout成员.

使用  using name space std 以后才能使用它的成员.

#include<iostream.h> 中不存在类std,但它有cin,out的相关函数,不需要使用命名空间了.