📄 namespace.cpp
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -