微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

【】future用法

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对象使用说明

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐