1.2 命名空间

C++经常需要多个团队合作来完成大型项目。多个团队就常常出现起名重复的问题,C++就提供了命名空间来解决这个问题。
比如团队A和团队B都需要定义一个叫做Test的类。

这里用代码简单演示:

//mian.cpp
#include
#include"ATest.h"
#include"BTest.h"
int main(){
    test();
    return 0;
}
//ATest.h
#pragma once
void test();
//BTest.h
#pragma once
void test();
//ATest.cpp
#include
#include"ATest.h"
void test(){
    std::cout << "A::test()" << std::endl;
}
//BTest.cpp
#include
#include"BTest.h"
void test(){
    std::cout << "B::test()" << std::endl;
}

解决方案:

//main.cpp
#include
#include"ATest.h"
#include"BTest.h"
int main(){
    A::test();
    B::test();
    return 0;
}
//ATest.h
#pragma once
namespace A {
    void test();
}
//BTest.h
#pragma once
namespace B {
     void test();
}
//ATest.cpp
#include
#include"ATest.h"
namespace A {
void test(){
    std::cout << "A::test()" << std::endl;
}       
}
//BTest.cpp
#include
#include"BTest.h"
namespace B {
void test(){
    std::cout << "B::test()" << std::endl;
}
}

顺便提两点:
命名空间的实现原理,C++最后都要转化为C来执行程序。在namespace A中定义的Test类,其实全名是A::Test。

C++所有特有的库(指c没有的库),都使用了std的命名空间。比如最常用的iostream。

using关键字设计的目的之一就是为了简化命名空间的。using关键字在命名空间方面主要有两种用法。

  1. using
    命名空间::变量名。这样以后使用此变量时只要使用变量名就可以了。举个例子。

    //main.cpp
    #include
    #include"ATest.h"
    #include"BTest.h"
    using A::test;
    int main(){
        test();
        return 0;
    }
    
  2. using namspce命名空间。这样,每一个变量都会在该命名空间中寻找。举个例子。

    //main.cpp
    #include
    #include"ATest.h"
    #include"BTest.h"
    using namespace A;
    int main(){
        test();
        return 0;
    }
    

    所以,头文件中一定不能使用using关键字。会导致命名空间的污染。还是用刚才的代码演示。

    解决方案:

    //main.cpp
    #include
    #include"ATest.h"
    #include"BTest.h"
    int main(){
        test();
        return 0;
    }
    
    //ATest.h
    #pragma once
    namespace A {
        void test();
    }
    using namespace A;
    
    //BTest.h
    #pragma once
    namespace B {
         void test();
    }
    using namespace B;
    
    //ATest.cpp
    #include
    #include"ATest.h"
    namespace A {
    void test(){
        std::cout << "A::test()" << std::endl;
    }       
    }
    
    //BTest.cpp
    #include
    #include"BTest.h"
    namespace B {
    void test(){
        std::cout << "B::test()" << std::endl;
    }
    }
    

    1.2 命名空间_第1张图片

你可能感兴趣的:(C++,c++)