我有以下 Qt 代码,在next()
. 我查看了QtConcurrent
代码,这对我来说并不明显,为什么它会失败。
namespace {
std::tuple<QString, std::exception_ptr> test( const int& data ) {
return std::make_tuple( QString(), std::exception_ptr() );
}
}
void
start() {
QVector<int> downloadList;
downloadList.push_back( 1 );
downloadList.push_back( 2 );
auto future = QtConcurrent::mapped( downloadList, test );
QFutureIterator<std::tuple<QString, std::exception_ptr>> it( future );
while( it.hasNext() ) {
auto& tuple = it.next();
}
}
它失败的地方是:
const T *pointer() const
{
if (mapIterator.value().isVector())
-> return &(reinterpret_cast<const QVector<T> *>(mapIterator.value().result)->at(m_vectorIndex));
else
return reinterpret_cast<const T *>(mapIterator.value().result);
}
更新:
相同的崩溃QFuture::const_iterator
。
笔记:
如果我能相信GDB, 就this
在. 然后我假设已经是一个,为什么,我不知道。QVector::at
0x0
mapIterator.value().result
nullptr