0

我有一个名为 tw_topic 的 QTableWidget。它不是空的。在另一个函数中,我需要项目的文本。

代码 :

for(int i = ui->tw_topic->rowCount(); i >= 0; i--)
{
    //should return the first item of the first column
    const QString itm = ui->tw_topic->item(i, 0)->text();
    //Here I will do some other stuff...
}

不知何故,它在它被初始化的时候崩溃了,我不知道为什么。

4

1 回答 1

0

我发现for循环是问题所在。

它应该是这样的:

for(int i = 0; i < ui->tw_topic->rowCount(); i++)
{ 
    // stuff 
}

如果iui->tw_topic最后一行,它会崩溃。

于 2013-05-07T17:37:00.177 回答