首页 > 其他 > 详细

[Cpp primer] Namespace using Declarations

时间:2017-02-20 22:48:03      阅读:215      评论:0      收藏:0      [点我收藏+]

If we want to use cin in the standard library, we need to

std::cin

 To simplify this work, we can do like this

using namespace::name;

  

* Headers should not include using Declarations

Why?

The reason is that the contents of a header are copied into the including program‘s text. It‘s likely to encounter unexpected name conflicts.

 

[Cpp primer] Namespace using Declarations

原文:http://www.cnblogs.com/KennyRom/p/6421672.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!