/*
funtion:熟悉命名空间
establish time:2015年3月4日19:41:23
*/
#include
using namespace std;
namespace printfA
{
void printf()
{
cout << "using namespace printfA..." << endl;
}
namespace printfC
{
void printf()
{
cout << "using namespace printfC..." << endl;
}
}
}
namespace printfB
{
void printf()
{
cout << "using namespace printfB..." << endl;
}
}
int main()
{
printfA::printf();
printfB::printf();
printfA::printfC::printf(); // 命名空间的嵌套定义
return 0;
}
/*
总结: 使用namespace可以 创建“自己” 的命名空间
*/
阅读(621) | 评论(0) | 转发(0) |