C++标准程序库中所有标示符都被定义在一个叫做std的namespace中。在使用标准程序库时,有三种表示方法:
1. 直接指定:例如iostream 可以这样写:std::cout<<x<<std::endl;
2. 使用using declaration,上面的例子可以这样写:using std::cout;using std::endl;
3. 使用using directive: 例如:using namespace std;
posted on 2012-02-08 23:09 加文 阅读(111) 评论(0) 编辑 收藏 引用 所属分类: C++
Powered by: C++博客 Copyright © 加文