首页 > 代码库 > using命名空间的声明

using命名空间的声明

 using命名空间的声明

基本语法

using namespace::name
using std::cout, 如果利用这种写法,就需要将用到的每一个函数都要写一遍
 
 1 using std::cout;//std::命名空间名字, cout是其一个成员
 2 using std::cin;
 3 using std::endl;
 4 int main()
 5 {
 6 int v1, v2 ;
 7 cout <<"using 的正确使用"<< endl;
 8 cin >> v1 >> v2;
 9 cout <<"the sum of v1 + v2 = "<< v1 + v2 << endl;
10 return0;
11 }

 

 
using namespace std; 直接使用这种用命名空间的声明,就将所有的std里面的成员都一起引用了
1 usingnamespace std;
2 int main()
3 {
4 int v1, v2 ;
5 cout <<"using 的正确使用"<< endl;
6 cin >> v1 >> v2;
7 cout <<"the sum of v1 + v2 = "<< v1 + v2 << endl;
8 return0;
9 }

 

需要注意的点

  • 头文件最好不要使用using声明,多次引用头文件,可能会导致名字冲突
  • 在.cpp文件中使用using 声明
 



using命名空间的声明