C++11没有#include<string>也可以使用string
在c++11中,这段代码可以运行
//并未包含<string>
#include <iostream>
using namespace std;
int main()
{
string s1 = "Hello";
cout<<s1<<endl;
return 0;
}
能运行的原因如下:
-
std::istream 和 std::ostream 都有 std::ios_base 这个基类。
-
std::ios_base 的成员函数 getloc 以值返回 std::locale (要求定义可见)。
-
std::locale 的成员函数 name 以值返回 std::string (要求定义可见)。
所以#include<iostream> 后能使用std::string,不过不一定等价于#include<string> 。
个人建议:使用string变量时,包含string头文件。
参考文章:https://blog.csdn.net/qq_34201858/article/details/110486124