继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

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

天道佩恩
关注TA
已关注
手记 4
粉丝 4
获赞 75
#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;
}
打开App,阅读手记
10人推荐
发表评论
随时随地看视频慕课网APP