失踪 ”;”在'namespace'和“;”之前在'使用'之前

时间:2013-12-19 15:12:28

标签: c++ header compiler-errors namespaces iostream

所以我正在制作一个明天到期的程序,由于某种原因,我一直得到这2个错误,如果我点击第一个它带我到iostream文件,就在_STD_BEGIN之前它要我放“ ;”但如果我这样做会弄乱库中的文件,所以我很确定我不必这样做,第二个错误是在我的main.cpp中它指向使用命名空间std;它要我放一个“;”在它=之前,如果我这样做,错误消失,它一直指向iostream错误.... 我不知道该怎么办,我的截止日期是明天。 这是我的main.cpp include部分,修改了使用namespace std

#include "stdafx.h"
#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <stdio.h>
#include "Package.h"
;using namespace std;

2 个答案:

答案 0 :(得分:5)

class中查找缺少分号的structPackage.h定义。即

class act
{
    // yadda
}  // no semicolon here

然后添加缺少的分号。

答案 1 :(得分:4)

当你在其中一个头文件中找到“遗失; type error on a line that follows closeley behind a bunch of #include statements, the likely culprit is a missing;`时。要找出哪个,从最后一个包含文件开始,Package.h。你将会肯定会在那里找到一个丢失的分号。它可能在一个类声明后丢失,就像你写的那样:

class Foo
{
}

而不是

class Foo
{
};