首页 > 其他 > 详细

【】future用法

时间:2021-03-28 11:32:48      阅读:32      评论:0      收藏:0      [点我收藏+]

std::future 介绍

 1 #include <iostream>
 2 #include <thread>
 3 #include <future>
 4 
 5 using namespace std;
 6 
 7 void DoWork(promise<int> thePromise)
 8 {
 9     // ... Do some work ...
10     // And ultimately store the result in the promise.
11     thePromise.set_value(42);
12 }
13 
14 int main()
15 {
16     // Create a promise to pass to the thread.
17     promise<int> myPromise;
18     // Get the future of the promise.
19     std::future<int> theFuture = myPromise.get_future();
20     // Create a thread and move the promise into it.
21     thread theThread{ DoWork, std::move(myPromise) };
22 
23     // Do some more work...
24 
25     // Get the result.
26     int result = theFuture.get();
27     cout << "Result: " << result << endl;
28 
29     // Make sure to join the thread.
30     theThread.join();
31 
32     return 0;
33 }

 

 

 

参考资料

1. C++11之std::future对象使用说明

 

【】future用法

原文:https://www.cnblogs.com/sunbines/p/14587435.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!