编译失败问题
#include<iostream>using namespace std;
int main(){
string str = "c++";
cout << str << endl;
system("pause");
}
vs2013显示错误:错误 1 error C2679: 二进制“<<”: 没有找到接受“std::string”类型的右操作数的运算符(或没有可接受的转换) c:\users\yuan\documents\visual studio 2013\projects\inout1\inout1\源.cpp 6 1 inout1
2 IntelliSense: 没有与这些操作数匹配的 "<<" 运算符
操作数类型为: std::ostream << std::string c:\Users\yuan\Documents\Visual Studio 2013\Projects\inout1\inout1\源.cpp 5 7 inout1
但在devc++里面运行,又是正常的、请问这是什么原因呢?