namespace.cpp

来自「C++ primer 书中例题代码puncutation」· C++ 代码 · 共 23 行

CPP
23
字号
#include <iostream>
#include <string>

using namespace std;

namespace user1
{
          string user_name = "WZR";
}

namespace user2
{
          string user_name = "GWZ";
}
          
int main()
{
    cout << "\n" << "Hello " << user1::user_name;
    cout << "\n" << "Hello " << user2::user_name;
    return 0;
}
    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?