QT foreach

原型:foreach(variable, container)

container:容器,即被遍历的对象
variable:当前元素,即遍历container过程中,当前的那个元素

代码:

QStringList container = { "1", "2", "3" };//定义一个QStringList类型的数组,名字叫container
foreach(QString variable, container)//使用foreach遍历container
{

	qDebug() << variable.toLatin1().data();//每次遍历container的一个元素,输出到控制台
    qDebug() << variable;
}

结果:

参考:Qt foreach遍历 | 九七的Qt_qstringlist遍历-CSDN博客

如想了解 toLatin1可以参考:qt中的toUtf8, toLatin1, Local8bit编码问题-CSDN博客

 

你可能感兴趣的:(qt,开发语言)