c – missing’;’在“使用”之前

前端之家收集整理的这篇文章主要介绍了c – missing’;’在“使用”之前前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用以下代码获取此编译错误

error C2143: Syntax error : missing ‘;’ before ‘using’

#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include "s.h"

using namespace std;

这怎么可能?如何解决

解决方法

“s.h”可能包含未被终止的类声明;

当你包含一个标题时,C预处理器将替换头的内容放在一起,所以如果你看s.h,你可能会发现一些未被终止的东西;

原文链接:https://www.f2er.com/c/113940.html

猜你在找的C&C++相关文章