欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

关于std::async的学习总结

程序员文章站 2022-06-15 12:17:36
...

一.std::async :

它是用来创建异步任务,会返回一个std::future对象。

std::future是一个类模板。使用实例:

std::future<int> result = std::async(std::launch::deferred | std::launch::async,myThread,10);

async的两个参数设置:

  • std::launch::deferred 它是延迟调用的意思,只有在执行std::future对象调用的时候才会执行async;并且不会创建新线程。
  • std::launch::async 它是立即创建新线程的意思。
  • std::launch::deferred | std::launch::async 这个形式是async在调用的时候的默认设置,也就是说,async它会在系统资源紧张的时候,会选择调用std::launch::deferred ,不去创建新线程。这也是它和thread的区别之一。thread 在系统资源紧张的时候而无法创建新线程的时候发生崩溃。

二.解决async在是否创建新线程的不确定性的办法:

我们引入

std::future_status来获取返回的std::future对象的状态,来判断async是否创建了新线程。

std::future_status status = result.wait_for(std::chrono::seconds(0));//意思是wait_for 0s

判断std::future_status status

std::future_status::deferred
std::future_status::timeout
std::future_status::ready
...

 

相关标签: 多线程