Chinaunix首页 | 论坛 | 博客
  • 博客访问: 11124
  • 博文数量: 5
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 32
  • 用 户 组: 普通用户
  • 注册时间: 2015-03-04 16:38
个人简介

你的时间在哪里,你的成就就在哪里。

文章分类
文章存档

2015年(5)

我的朋友
最近访客

分类: C/C++

2015-03-04 20:42:08

/*
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) |
0

上一篇:开启嵌入式之旅!

下一篇:send与recv函数

给主人留下些什么吧!~~