C++的命名空间
在C++的应用中,可能会出现在不同的库中存在相同名称的函数,导致名称冲突;因此引入命名空间这一概念,用于区分不同库中相同名称的函数、类、变量等。
1、作用域运算符::
作用域运算符可以来解决局部变量与全局变量的重名问题,延伸的,可以用来表示不同作用域下的变量、类、函数等 std::cout
2、命名空间的定义
C++中使用namespace关键字表示命名空间,后跟命名空间的名称,如下
#include <iostream>
// 定义命名空间 namespace first{ int a = 10; void func(){ cout << "print namespace first"<< endl; } } int main(){
// 为了调用带有命名空间的函数或变量,需要在前面加上命名空间的名称 cout << first::a<< endl; first::func(); return 0; }
命名空间只能在全局范围内定义,不能定义在函数、类中,命名空间可以嵌套命名空间,调用的时候A::B::a
命名空间是开放的,即可以随时把新的名称放到命名空间中
namespace first{ int a = 10; } namespace first{ int b = 20; }
无命名空间意味着空间中的内容仅可以在该文件中使用
可以给命名空间别名 namespace cv2 = cv;
3、using声明指令
using声明可以在使用指定的命名空间时不需要在前面加上命名空间的名称
using namespace std;
using指令也可以用来指定命名空间中的特定项目,如
using std::cout;
标签:cout,namespace,C++,空间,命名,using From: https://www.cnblogs.com/Liang-ml/p/16753892.html