error C2143: Syntax error : missing ‘;’ before ‘using’
#include <iostream> #include <iomanip> #include <fstream> #include <string> #include "s.h" using namespace std;
这怎么可能?如何解决?
当你包含一个标题时,C预处理器将替换头的内容放在一起,所以如果你看s.h,你可能会发现一些未被终止的东西;