cout是ostream类的预定义对象,用于在标准输出设备上打印数据。通常,当我们在Linux操作系统上为G ++编译器编写程序时,该程序需要在程序中使用“ std”命名空间。然后我们可以访问任何对象,例如cout,cin。
C++
// Program to show the use of cout
// without using namespace
#include
int main()
{
std::cout << "GeeksforGeeks";
return 0;
}
C++
// Program to show use of using namespace
#include
using namespace std;
int main()
{
cout << "GeeksforGeeks";
return 0;
}
C++
// Program without using
// using namespace std and std::
#include
int main()
{
cout << "GeeksforGeeks";
return 0;
}
输出:
GeeksforGeeks
std:cout:名称空间是在其中定义某些内容的声明性区域。因此,在这种情况下, cout是在std名称空间中定义的。因此, std :: cout声明在std命名空间中定义的cout ,否则将使用在std命名空间中定义的cout的定义。因此,该std :: cout用于从std名称空间定义cout。
C++
// Program to show use of using namespace
#include
using namespace std;
int main()
{
cout << "GeeksforGeeks";
return 0;
}
输出:
GeeksforGeeks
如果cout不使用“使用名称空间std”或“ std ::”,会发生什么情况?
C++
// Program without using
// using namespace std and std::
#include
int main()
{
cout << "GeeksforGeeks";
return 0;
}
编译错误:
main.cpp: In function ‘int main()’:
main.cpp:5:2: error:
‘cout’ was not declared in this scope
cout<<"GeeksforGeeks"<
“使用命名空间std cout”和“ std :: cout”之间的区别?
在C++中,cout和std :: cout都是相同的,但是有一些基本区别如下:
S. No. | cout | std::cout |
---|---|---|
1. | namespace std must be used in the program | Without using namespace std, you should use std::cout. |
2. | cout is a predefine object of ostream class | it is used to print the data as well as values |
3. | Using namespace std; then we can access any of the object like cout, cin | without using std, but if we do not use using namespace std; then we should use std::cout etc to prevent errors |
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。