当我运行这个程序时,我得到下面提到的错误 s<<"\""<<string<<"\""
:
#include <string>
#include <iostream>
#include <sstream>
#include <cstdlib>
using namespace std;
string str="abc";
stringstream s;
s<<"\""<<string<<"\"";
cout<<(s.str().c_str());
错误:由于 -Wfatal-errors 导致 '<<' 标记编译终止之前的预期构造函数、析构函数或类型转换。
http://codepad.org/KuyMQg3x,这里是有错误的在线代码。