Contents

【转】原创作品,允许转载。转载时请务必以超链接形式标明文章原始出处、作者信息和本声明,否则将追究法律责任。
http://socol.iteye.com/blog/719500

如果想输出DEBUG信息:

1
2
3
qDebug() << "Date:" << QDate::currentDate();
qDebug() << "Types:" << QString("String") << QChar('x') << QRect(0, 10, 50, 40);
qDebug() << "Custom coordinate type:" << coordinate;



如果想使用,COUT/IN需要使用QTextStream的重载

1
2
3
4
5
6
7
8
9
10
#include <QApplication>
#include <QTextStream>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QTextStream out(stdout);
out << "is QTextStream out " << endl;
return app.exec();
}
Contents