• C++命名空间namespace


    作用:避免变量或函数的命名冲突 

    定义:

    namespace 名字空间名{

    名字空间成员1;

    名字空间成员1;

    ......

    }

    注意:名字空间成员可以是全局函数、全局变量、类型、名字空间

    实例

    #include <iostream>
    
    namespace ns1 {
        void func() {
            std::cout << "ns1的func" << std::endl;
        }
    }
    namespace ns2 {
        void func() {
            std::cout << "ns2的func" << std::endl;
        }
    }
    
    
    
    int main()
    {
        //func();   不能直接访问
        ns1::func();
        ns2::func();
      
        
    
        system("pause");  //暂停
    }
    using namespace 名字空间名
    #include <iostream>
    
    
    
    namespace ns1 {
        void func() {
            std::cout << "ns1的func" << std::endl;
        }
    }
    namespace ns2 {
        void func() {
            std::cout << "ns2的func" << std::endl;
        }
    }
    
    
    
    int main()
    {
        using namespace ns1;
        func();  //可以省略ns1::
        ns2::func();
      
        
    
        system("pause");  //暂停
    }
    #include <iostream>
    
    namespace ns1 {
        void func() {
            std::cout << "ns1的func" << std::endl;
        }
    }
    namespace ns2 {
        void func() {
            std::cout << "ns2的func" << std::endl;
        }
    }
    
    
    
    int main()
    {
        using  ns1::func;
        func();  //可以省略ns1::
        ns2::func();
         
    
        system("pause");  //暂停
    }
    #include <iostream>
    
    namespace ns1 {
        void func() {
            std::cout << "ns1的func" << std::endl;
        }
    }
    namespace ns2 {
        void func() {
            std::cout << "ns2的func" << std::endl;
        }
    }
    
    
    
    int main()
    {
        using  ns1::func;  //声明方法一
        using namespace ns2;  //声明方法二
        func();  //执行的是ns1的func
        //以声明方法一为主
    
    
        system("pause");  //暂停
    }

    名字空间的嵌套

    #include <iostream>
    
    namespace ns1 {
        int num = 100;
            namespace ns2 {
                int num = 200;
                namespace ns3 {
                    int num = 300;
                }
        }
    }
    
    int main()
    {
        std::cout << ns1::ns2::num << std::endl;  //输出值200
        
        system("pause");  //暂停
    }

    名字空间的合并

    两个同名空间会自动合并,但两个空间中不能有同名成员或函数

    #include <iostream>
    
    namespace ns1 {
        int unm = 100;
    }
    namespace ns1 {
        int unm1 = 200;
    }
    
    int main()
    {
        std::cout << ns1::unm << std::endl;
        std::cout << ns1::unm1 << std::endl;
        
        system("pause");  //暂停
    }

  • 相关阅读:
    酱茄WordPress社区论坛圈子小程序为解决用户活跃变现而生
    太顶了!爆肝3.5W字长文Java 集合!(建议收藏)
    美团二面:内存耗尽后Redis会发生什么?
    UE4_C++自定义log
    python3进制转换
    UE4蓝图Blueprint->组件->TreeView/ListView
    C++,win编程
    2020-11-11
    b站视频详情数据抓取,自动打包并发送到指定邮箱(单个或者群发)
    BiLiBiLi爬虫
  • 原文地址:https://www.cnblogs.com/liming19680104/p/14830494.html
Copyright © 2020-2023  润新知