我在Visual Studio 2010 Express中收到此错误: 错误C2039:'string':不是'std'的成员 这是标题FMAT.h class string; class FMAT { public: FMAT(); ~FMAT(); int session(); private: int manualSession(); int autoSession(); int mode; std::string instructionFile; }; 这是实现文件FMAT.cpp #...
#include<iostream> #include<string_view> using namespace std; int main(){ string str="hello"; cout<<str<<endl; std::string_view sv=" world"; auto result=str+sv.data(); return 0; } 错误是:= main.cpp: In function 'int main()': main.cpp:7:12: error: 'string_view' is not...
在将-d_glibcxx_use_c99添加到构建中之后,将选择std::to_string。
#include<iostream> #include<string_view> using namespace std; int main(){ string str="hello"; cout<<str<<endl; std::string_view sv=" world"; auto result=str+sv.data(); return 0; } 错误是:= main.cpp: In function 'int main()': main.cpp:7:12: error: 'string_view' is not...