本文主要是介绍QList的错误使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
最开始写出来的代码是类似这样的:
QList<int*> list;for(int i=1;i<=20;i++){int * j=new int(i);list<<j;}for(int i=0;i<list.count();i++){int * m=list.at(i);list.removeOne(m);delete m;}
今天突然发现这么写问题很大!
(内存泄漏严重)
(直接泄漏一半)
打印一下:
for(int i=0;i<list.count();i++){int * m=list.at(i);qDebug()<<"i:"<<i<<" list.count():"<<list.count()<<" value:"<<*m;list.removeOne(m);delete m;}
i: 0 list.count(): 20 value: 1
i: 1 list.count(): 19 value: 3
i: 2 list.count(): 18 value: 5
i: 3 list.count(): 17 value: 7
i: 4 list.count(): 16 value: 9
i: 5 list.count(): 15 value: 11
i: 6 list.count(): 14 value: 13
i: 7 list.count(): 13 value: 15
i: 8 list.count(): 12 value: 17
i: 9 list.count(): 11 value: 19
进一步打印:
for(int i=0;i<list.count();i++){int * m=list.at(i);qDebug()<<"i:"<<i<<" list.count():"<<list.count()<<" value:"<<*m;list.removeOne(m);QString str;for(int j=0;j<list.count();j++){int * n=list.at(j);str+=QString::number(*n)+" ";}qDebug()<<str;delete m;}
i: 0 list.count(): 20 value: 1
"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 "
i: 1 list.count(): 19 value: 3
"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 "
i: 2 list.count(): 18 value: 5
"2 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 "
i: 3 list.count(): 17 value: 7
"2 4 6 8 9 10 11 12 13 14 15 16 17 18 19 20 "
i: 4 list.count(): 16 value: 9
"2 4 6 8 10 11 12 13 14 15 16 17 18 19 20 "
i: 5 list.count(): 15 value: 11
"2 4 6 8 10 12 13 14 15 16 17 18 19 20 "
i: 6 list.count(): 14 value: 13
"2 4 6 8 10 12 14 15 16 17 18 19 20 "
i: 7 list.count(): 13 value: 15
"2 4 6 8 10 12 14 16 17 18 19 20 "
i: 8 list.count(): 12 value: 17
"2 4 6 8 10 12 14 16 18 19 20 "
i: 9 list.count(): 11 value: 19
"2 4 6 8 10 12 14 16 18 20 "
这不是我想要的,我希望全部都打印出来,所有内存都释放。
QList<int*> list;for(int i=1;i<=20;i++){int * j=new int(i);list<<j;}for(int i=0;i<list.count();i++){int * m=list.at(i);qDebug()<<"value:"<<*m;delete m;}list.clear();
这样写应该比较好。
更明显的对比:
错误写法:
QList<QLabel *> list;for(int i=1;i<=20;i++){QLabel * l=new QLabel;l->setText(QString::number(i));l->resize(300,300);l->show();list<<l;}for(int i=0;i<list.count();i++){QThread::msleep(500);QLabel * l=list.at(i);list.removeOne(l);delete l;}
正确写法:
QList<QLabel *> list;for(int i=1;i<=20;i++){QLabel * l=new QLabel;l->setText(QString::number(i));l->resize(300,300);l->show();list<<l;}for(int i=0;i<list.count();i++){QThread::msleep(500);QLabel * l=list.at(i);delete l;}list.clear();
这篇关于QList的错误使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!