错误:预期在“QtCoreModule”之前初始化程序

发布于 2024-11-07 15:05:53 字数 514 浏览 0 评论 0原文

错误:

In file included from /opt/qtsdk-2010.05/qt/include/QtCore/qcoreapplication.h:47,
                 from /opt/qtsdk-2010.05/qt/include/QtGui/qapplication.h:45,
                 from /opt/qtsdk-2010.05/qt/include/QtGui/QApplication:1,
                 from main.cpp:3:
/opt/qtsdk-2010.05/qt/include/QtCore/qeventloop.h:51: error: expected initializer before ‘QtCoreModule’
make: *** [main.o] Error 1

我已经检查过了;我的 .h 和 .cpp 文件中丢失,找不到任何文件。我应该在这里发布代码吗?或者错误意味着其他什么?

帮助!

Errors:

In file included from /opt/qtsdk-2010.05/qt/include/QtCore/qcoreapplication.h:47,
                 from /opt/qtsdk-2010.05/qt/include/QtGui/qapplication.h:45,
                 from /opt/qtsdk-2010.05/qt/include/QtGui/QApplication:1,
                 from main.cpp:3:
/opt/qtsdk-2010.05/qt/include/QtCore/qeventloop.h:51: error: expected initializer before ‘QtCoreModule’
make: *** [main.o] Error 1

I have checked ; missing in my .h and .cpp files, couldn't find any. Should I post here the code? Or the error means something else?

Help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安穩 2024-11-14 15:05:53

我敢打赌,您正在导入的标头之一的类或结构声明末尾缺少 ; 。 (特别是您的 MainWindow.h 。)

class Whatever : ... {

}; // <- this ";" is crucial

I'm betting you're missing an ; at the end of a class or struct declaration in one of the headers you're importing. (Your MainWindow.h specifically.)

class Whatever : ... {

}; // <- this ";" is crucial
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文