在使用string类型时,添加了<string>头文件,编译后出现
'string' : undeclared identifier错误,究其原因主要是没有给出命名空间。
正确的是:
#include <string> using namespace std;