qt creator在环境中运行控制台程序没有输出.求助..
xubuntu 12.04 32bit
用软件中心安装的qtcreator 2.4.1.
写一个控制台程序,点运行,会出来一个终端窗口,但窗口中没有字,一直停在那里..
或者在运行设置中怎么设置?求高手相助.谢谢.
[解决办法]
我的能。
main.cpp
#include <QtCore/QCoreApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
qDebug() << "hellow world!";
return a.exec();
}
.pro
QT += core
QT -= gui
TARGET = ConsoleTest
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp
[解决办法]
楼主是不是用的printf();?
是的话 printf();里面的内容末尾必须要加一个 “\n”才会输出。
[解决办法]