s t d std std是一个类(输入输出标准),它包括了 c i n cin cin成员和 c o u t cout cout成员,“ u s i n g n a m e s p a c e s t d using\,\,namespace\,\,std usingnamespacestd ;”以后才能使用它的成员。 # i n c l u d e < i o s t r e a m . h > \#include
而第二种标准 # i n c l u d e < i o s t r e a m > \#include
前者没有后缀,实际上,在你的编译器 i n c l u d e include include文件夹里面可以看到,二者是两个文件,打开文件就会发现,里面的代码是不一样的。
1.直接指定标识符:例如 s t d : : i o s t r e a m std::iostream std::iostream而不是 i o s t r e a m iostream iostream。完整语句如下:
std::cout << std::hex << 3.4 << std::endl;
2.使用 u s i n g using using关键字
using std::cout; using std::endl; using std::cin;
以上程序可以写成如下代码:
using std::cout <<using std::hex << 3.4 <<using std:: endl;
使用 u s i n g n a m e s p a c e s t d using\,\,namespace\,\,std usingnamespacestd
例如:
#include<iostream>
#include<sstream>
#include<string>
using namespace std;
这样命名空间std内定义的所有标识符都有效(曝光)。就好像它们被声明为全局变量一样。那么以上语句可以如下写:
cout << hex << 3.4 << endl;
因为标准库非常的庞大,所以程序员在选择的类的名称或函数名时就很有可能和标准库中的某个名字相同。所以为了避免这种情况所造成的名字冲突,就把标准库中的一切都放在名字空间 s t d std std中。但这又会带来了一个新问题。无数原有的 C + + C++ C++代码都依赖于使用了多年的伪标准库中的功能,他们都是在全局空间下的。 所以就有了 < i o s t r e a m >
s t d std std是命名空间,你所用到的很多函数或者类都是被放到命名空间里面的,命名空间是防止名字重复而使用的,比如 S T L STL STL有个类叫 s t r i n g string string,而你也设计一个类叫 s t r i n g string string,那么编译器编译的时候就搞不清楚到底是那个 s t r i n g string string,所以用一个命名空间就比较方便了。具体是这么回事的,比如有两个班级, A A A班和 B B B班,两个班各有一个叫张三的人,而两个班的同学相互之间都是非常熟悉的。那么他们聊天的时候说张三,那其他人肯定会问,哪个张三?对吧,因为搞不清楚到底说的是哪个,所以会犯迷糊。而这个时候,那个人会补充, A A A班的张三或者 B B B班的张三,这样,其他人就知道到底是谁了。这里的 A A A班, B B B班就好像命名空间一样,而张三就好像那个 s t r i n g string string,或者说是对象,变量或者函数。
当你自己定义一个 s t r i n g string string并把它放到命名空间 A A A AAA AAA中的时候,你使用 s t r i n g string string只要指定是哪个命名空间的,就不会导致编译器分不清是哪个 s t r i n g string string了。你使用时会用 s t d : : s t r i n g std::string std::string或者 A A A : : s t r i n g AAA::string AAA::string,前者告诉编译器我用的 s t r i n g string string是在命名空间 s t d std std里面的,后者告诉编译器用的 s t r i n g string string是在命名空间 A A A AAA AAA里面的。这样,编译器就一目了然,不会出错。但是你却发现每次只要用到 s t r i n g string string都必须在前面加上 A A A AAA AAA,这样相当麻烦,有没有办法简化操作呢?当然有,就好像上面的例子,那些人聊天之前,他可以告诉其他人说,注意,下面说到张三都是说的 B B B班的,那么其他人就知道,后面只要出现张三都是在说 B B B班的,不是 A A A班的了。很多文章里面也有这样的情况啊,一般注明是以下简称什么什么的,就是为了避免重复,导致混淆。而程序一样的,你可以先告诉编译器你用的 s t r i n g string string是哪个命名空间的。就要用到这句了。 u s i n g n a m e s p a c e s t d using\,\, namespace\,\, std usingnamespacestd;这样告诉编译器,我没有指定命名空间的,就默认使用std这个命名空间,那么你使用 s t r i n g string string就不用再加 s t d : : std:: std::作用域了。只需要直接写string就可以了,编译器就知道你说的是哪个 s t r i n g string string了。这就是命名空间的作用。