当前位置: 代码迷 >> QT开发 >> Qtopia环境如何使用cout?
  详细解决方案

Qtopia环境如何使用cout?

热度:405   发布时间:2016-04-25 05:13:45.0
Qtopia环境怎么使用cout??
按照网上搜索的贴子,定义QTextStream cout(stdout, QIODevice::WriteOnly);
编译的时候就提示出错:WriteOnly is not a member of 'QIODevice'

------解决方案--------------------
要输出调试信息么? Qt下一般都是用QDebug的居多
在没有#include<QDebug>的时候QDebug相当于printf
当#include<QDebug>之后QDebug就相当于cout