1

我有以下 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::at0x0mapIterator.value().resultnullptr

4

1 回答 1

1

似乎Qt4文档又错了(有人感到惊讶吗?)。waitForResult( int )至少我在迭代器中找不到对调用的引用。

虽然有效的是resultAt直接使用。

所以你会更换

for( auto it = future.begin(); it != future.end(); ++it ) {
    auto& result = *it;

for( int i = 0; i != count; ++i ) {
    auto result = future.resultAt( i );

以防止它崩溃。

于 2013-06-28T07:48:50.667 回答