C++,如果在程序的前面已经include 了 string, 是不是意味这在后面就不需要使用std::string这种形式了?
看到书上前面已经使用了#include<string>,不明白为什么后面的代码中还要使用std::string声明。...
看到书上前面已经使用了#include <string>, 不明白为什么后面的代码中还要使用std::string声明。
展开
2个回答
展开全部
include了<string>,但是<string>裏面的string是在命名空间std裏面的。
即使include了<string>,如果你也include了别的某个人写的头文件中也有叫string的类,怎麽区分呢?
所以C++有命名空间的概念,使用的时候要说明到底是哪裏的一个string。
是std::string还是xxx::string??
使用using std::string;可以指出到底用哪个命名空间中的string,这样在程序中就能直接使用string了。
即使include了<string>,如果你也include了别的某个人写的头文件中也有叫string的类,怎麽区分呢?
所以C++有命名空间的概念,使用的时候要说明到底是哪裏的一个string。
是std::string还是xxx::string??
使用using std::string;可以指出到底用哪个命名空间中的string,这样在程序中就能直接使用string了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询