1. 程式人生 > >弱智的問題:error C2143: syntax error : missing ';' before ''

弱智的問題:error C2143: syntax error : missing ';' before ''

       最近編了幾個Qt的小程式,其中幾個出現了error C2143: syntax error : missing ';' before '<cv-qualifer>'這個錯誤,編寫的時候也沒注意檢查,在網上苦苦尋找,也沒怎麼找到幾個像樣的說法,今天再把這幾個小程式細細一看,發現宣告類的時候忘記在類後面加分號了。。。傻逼了。。。

       錯誤如下:
1>.\debug\moc_QtStudy.cpp(19) : error C2143: syntax error : missing ';' before '<cv-qualifer>'
1>.\debug\moc_QtStudy.cpp(19) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>.\debug\moc_QtStudy.cpp(19) : warning C4091: 'static ' : ignored on left of 'const int' when no variable is declared
1>.\debug\moc_QtStudy.cpp(19) : error C2144: syntax error : 'uint' should be preceded by ';'
1>main.cpp
1>.\main.cpp(5) : error C2144: syntax error : 'int' should be preceded by ';'(這個錯誤是因為man.cpp中引用的#include "QtStudy.h"中存在錯誤所致)


1>QtStudy.cpp
1>.\QtStudy.cpp(4) : error C2533: 'QtStudy::{ctor}' : constructors not allowed a return type
1>Generating Code...

    最後檢查原始碼:   

#ifndef QTSTUDY_H
#define QTSTUDY_H
#include <QDialog>
#include <QPushButton>
#include <QLabel>

class QtStudy:public QDialog
{
 Q_OBJECT
public:
 QtStudy(QWidget * parent = 0, Qt::WindowFlags f = 0);
 ~QtStudy();
private:
 QPushButton* pushbutton;
 QLabel* label;
}


#endif

宣告完類之後竟然忘記新增分號;,哎,弱智,大家就當笑話看了吧。

修改後編譯正常。。。

#ifndef QTSTUDY_H
#define QTSTUDY_H
#include <QDialog>
#include <QPushButton>
#include <QLabel>

class QtStudy:public QDialog
{
	Q_OBJECT
public:
	QtStudy(QWidget * parent = 0, Qt::WindowFlags f = 0);
	~QtStudy();
private:
	QPushButton* pushbutton;
	QLabel* label;
};


#endif
希望有類似的弱智的問題的童鞋儘快找到這個簡單傻逼的問題。。。