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
如果“using namespace std”和“std::”都不用于 cout,会发生什么?
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 等的准备工作,请参阅完整的面试准备课程。