我有一个指向 QLineEdit 对象的指针数组,我想遍历它们并输出它们持有的文本。看来我在使用指针时遇到了麻烦..
QList<QLineEdit *> boxes = ui->gridLayoutWidget->findChildren<QLineEdit *>();
for(QList<QLineEdit *>::iterator it = boxes.begin(); it != boxes.end(); it++)
{
qDebug() << **it->text(); //not sure how to make this correct
}
我可以使用 qDebug 输出对象和名称,所以我知道 findChildren() 和迭代器已设置好,但我不确定如何获取文本。