1

我正在使用 QAbstractListModel.match() 搜索项目的索引(如果它存在于模型中)。

QModelIndex childIndex = m_DataSourceModel.match(m_DataSourceModel.index(0,0),Qt::UserRole,QVariant::fromValue(messageID),1,Qt::MatchRecursive)[0];

找不到该项目时,会发生此错误:

ASSERT failure in QList<T>::operator[]: "index out of range", file C:/Qt/5.10.0/mingw53_32/include/QtCore/qlist.h, line 549

手册上说:“返回的列表可能是空的。” 之后应该使用 QModelIndex.isValid() 检查 QModelIndex

那么为什么在我检查索引之前没有任何匹配项时程序会崩溃?

4

1 回答 1

2

如文档匹配所示,您可以返回一个空列表,因此在访问之前,您必须验证您至少拥有必要数量的元素:

QModelIndexList indexes = m_DataSourceModel.match(m_DataSourceModel.index(0, 0),
                                                  Qt::UserRole, 
                                                  QVariant::fromValue(messageID),
                                                  1, 
                                                  Qt::MatchRecursive);
if(!indexes.empty()){ 
    QModelIndex childIndex = indexes.first();
    // or QModelIndex childIndex = indexes[0];
}
于 2019-04-14T10:36:02.727 回答