码迷,mamicode.com
首页 > 其他好文 > 详细

【原创】QT 打印输出

时间:2018-03-08 00:02:19      阅读:994      评论:0      收藏:0      [点我收藏+]

标签:c语言   argv   tor   size   pre   div   body   bsp   两种   

 list类 qDebug 的两种用法

#include <QDebug>

int main(int argc,char *argv[])

{

QList<int> list;

list<<1<<2<<3<<4<<5;

QListIterator<int> i(list);

//用法一,没有#include <QDebug>,默认为C语言的用法

qDebug("Items in list: %d", list.size()); 

for(;i.hasNext();) 

qDebug()<<i.next(); //用法二,输出i.next()

 

return 0;

}

 

 

【原创】QT 打印输出

标签:c语言   argv   tor   size   pre   div   body   bsp   两种   

原文地址:https://www.cnblogs.com/hhxxgdd/p/8525328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!