#include <iostream>
using namespace std;
/* C++特性 命名空间*/
namespace xx{
int i=10;
};
namespace Xx { // 命名空间
int i=16;
}
int main()
{
//using namespace nsp;
cout << xx::i <<endl;
cout << Xx::i <<endl;
return 0;
}
C++命名空间例子简单易懂
最新推荐文章于 2022-04-27 19:48:14 发布