命名空间的作用
c++中可以使用关键字namespace来控制标识符的作用域,防止发生冲突。
命名空间的三种使用方式
1.
namespace testA { int test_a = 0; } void test() { std::cout << testA::test_a << std::endl; //直接使用命名空间加两个冒号 }
2.
namespace testB{ int test_b = 1; } void test() { using testB::test_b; //先申明,之后每次使用就不需要使用testB:: std::cout << test_b << std::endl; }
3.
namespace testC { int test_c = 2; } void test() { using namespace testC; //先申明,后使用 std::cout << test_c << std::endl; }
namespace的嵌套
namespace testA { namespace testB { int test = 10; } } void test() { std::cout << testA::testB::test << std::endl; //namespace的嵌套使用必须将每一个作用域都写出来 }
申明:本文章记录学习笔记,分享给大家一起学习,有不正确的地方欢迎大家指出。文中部分内容为网络知识总结,如有侵权,马上删除。