当前位置:主页 > 软件编程 > C代码 >

C++命名空间namespace的介绍与使用

时间:2020-12-23 11:38:26 | 栏目:C代码 | 点击:

介绍

命名空间可以解决程序中的同名冲突,尤其大型项目多人开发中经常用到。比如我们使用C++的标准输出std::cout就使用了std命名空间。

语法:

namespace XXX
{
 class A
 {
 public:
 ...
 };
} //没有分号

在某些第三方库中是有namespace的,因此我们在使用这些库的时,要确定是否使用using namespace来解除名字前缀。

使用

#include <stdio.h>
namespace XXX
{
 class A
 {
 public:
 void test()
 {
  printf("this is namespace XXX class A\n");
 }
 };
}
using namespace XXX;
int main()
{
 A* p = new A();
 p->test();
 return 1;
}

同时命名空间也支持嵌套

总结

您可能感兴趣的文章:

相关文章