Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我只是想看看我的 Qt 创建器是否运行正常,当我在 Qt 中创建一个新项目并选择 Qt 控制台应用程序并将主要更改为:
#include <QtCore/QCoreApplication> int main() { return 0; }
然后它运行没有错误,但控制台窗口只出现不到一秒钟,只闪烁一次并关闭。这是正常的还是应该等我按键关闭?
不,这很正常,没有任何活动发生,因此它创建了应用程序,没有任何代码行,然后返回 0 并退出。