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”才会输出。
------解决方案--------------------
标准C项目可以显示吗?
控制台输出的标题一定是qtcreator_process_stub。
------解决方案--------------------
cout 也可以的
------解决方案--------------------
勾选 Run in terminal