[C++] 用Xcode来写C++程序[6] Name visibility

用Xcode来写C++程序[6] Name visibility

技术分享

 

此小结包括了命名空间的一些使用细节

 

命名空间

#include <iostream>
using namespace std;

namespace foo {
    // 函数
    int value() {
        return 5;
    }
}

namespace bar {
    // 常量
    const double pi = 3.1416;
    
    // 函数
    double value() {
        return 2*pi;
    }
}

int main () {
    cout << foo::value() << \n;
    cout << bar::value() << \n;
    cout << bar::pi << \n;
    
    return 0;
}

打印结果

5
6.2832
3.1416
Program ended with exit code: 0

 

 

 

使用命名空间

#include <iostream>
using namespace std;

namespace first {
    int x = 5;
    int y = 10;
}

namespace second {
    double x = 3.1416;
    double y = 2.7183;
}

int main () {
    // 声明使用命名空间中的某个元素
    using first::x;
    using second::y;
    cout << x << \n;
    cout << y << \n;
    
    // 直接使用命名空间中的某个元素
    cout << first::y << \n;
    cout << second::x << \n;
    
    return 0;
}

打印结果

5
2.7183
10
3.1416
Program ended with exit code: 0

 

#include <iostream>
using namespace std;

namespace first {
    int x = 5;
    int y = 10;
}

namespace second {
    double x = 3.1416;
    double y = 2.7183;
}

int main () {
    // 声明使用命名空间first中的元素
    using namespace first;
    cout << x << \n;
    cout << y << \n;
    
    // 使用命名空间second中的元素
    cout << second::x << \n;
    cout << second::y << \n;
    
    return 0;
}

打印结果

5
2.7183
10
3.1416
Program ended with exit code: 0

 

#include <iostream>
using namespace std;

namespace first {
    int x = 5;
}

namespace second {
    double x = 3.1416;
}

int main () {
    // 使用命名空间first
    {
        using namespace first;
        cout << x << \n;
    }
    
    // 使用命名空间second
    {
        using namespace second;
        cout << x << \n;
    }
    
    return 0;
}

打印结果

5
3.1416
Program ended with exit code: 0

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。