手记

命名空间namespace的基本使用方法

#include <iostream>

using namespace std;

// 定义命名空间
namespace A
{
    namespace B
    {
        string str = "AB";
    }

    string str = "A";
}

namespace B
{
    string str = "B";
}

int main(int argc, char* argv[])
{
    // 使用绝对路径
    cout << A::str << endl;
    cout << A::B::str << endl;

    // 指定使用B命名空间
    using namespace B;
    cout << str << endl;

    cin.get();
    cin.get();
    return 0;
}
10人推荐
随时随地看视频
慕课网APP