我正在开发一个Qt5应用程序,在那里我需要异步执行一些任务。我需要目标-C中类似于dispatch_async的东西。我怎样才能做到这一点?
dispatch_async
发布于 2018-03-12 16:54:45
Qt提供QtConcurrent::run
C++11提供std::异步
https://stackoverflow.com/questions/49240328
相似问题