根据我的理解,QtConcurrent::blockingMappedReduced返回最终结果,而QtConcurrent::MappedReduced返回一个QFuture对象,但在这个例子中http://doc.qt.io/qt-5/qtconcurrent-wordcount-main-cpp.html我看到了这样的代码:WordCounttotal=QtConcurrent::mappedReduced(files,countWords,reduce);QtConcurrent::mappedReduced函数也返回最终结果。我错过了什么吗?如果这是错误的,那么使用QtCon