C++异步async

2022/8/9 1:24:19

本文主要是介绍C++异步async,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include <iostream>
#include <future>

int mythread()
{
   std::cout << "mythread " << std::this_thread::get_id() << std::endl;
   std::chrono::milliseconds second(3000);
   std::this_thread::sleep_for(second);
   return 5;
}

int main()
{
   std::cout << "main " << std::this_thread::get_id() << std::endl;

   /*
      async会创建新线程
      deferred不会创建新线程
   */
   std::future<int> ret = std::async(std::launch::async, mythread);

   std::cout << "async" << std::endl;

   /* 卡到这里等待线程结束 */
   std::cout << "future " << ret.get() << std::endl;

   std::cout << "end" << std::endl;

   return 0;
}
$ ./a.out 
main 140585868318528
async
mythread 140585850980096
future 5
end


这篇关于C++异步async的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程