马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
大佬们,这个comboBox为什么会好端端的出现索引越界啊
void Widget::Init_renameAlphaSet()
{
ui->groupBoxRenameAlphaSet->setDisabled(true);
ui->comboBoxAlphaSetUpperLowerMix->setEnabled(false);
renameAlphaSetPage = renameAlphaSetCurrentPage = 0;
QStringList renameAlphaSetUpperLowerMixList;
renameAlphaSetUpperLowerMixList << "先小写后大写(所有字母)" << "先大写后小写(所有字母)"
<< "先小写后大写(单个字母)" << "先大写后小写(单个字母)";
ui->comboBoxAlphaSetUpperLowerMix->addItems(renameAlphaSetUpperLowerMixList);
}
运行的时候回报这个错:
ASSERT failure in QList<T>::operator[]: "index out of range", file E:/Qt/Qt5.12.9/5.12.9/mingw73_64/include/QtCore/qlist.h, line 552
一开始还能运行,但后来就不知道怎么了,我好像也没干啥啊,comboBox初始化也就是在这里初始化的,maxCount我也改的很大了。。 |