博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
线程--promise furture 同步
阅读量:4864 次
发布时间:2019-06-11

本文共 2327 字,大约阅读时间需要 7 分钟。

http://www.cnblogs.com/haippy/p/3279565.html

std::promise 类介绍

promise 对象可以保存某一类型 T 的值,该值可被 future 对象读取(可能在另外一个线程中),因此 promise 也提供了一种线程同步的手段。在 promise 对象构造时可以和一个共享状态(通常是std::future)相关联,并可以在相关联的共享状态(std::future)上保存一个类型为 T 的值。

可以通过 get_future 来获取与该 promise 对象相关联的 future 对象,调用该函数之后,两个对象共享相同的共享状态(shared state)

  • promise 对象是异步 Provider,它可以在某一时刻设置共享状态的值。
  • future 对象可以异步返回共享状态的值,或者在必要的情况下阻塞调用者并等待共享状态标志变为 ready,然后才能获取共享状态的值。
#include 
// std::cout#include
// std::ref#include
// std::thread#include
// std::promise, std::futurevoid print_int(std::future
& fut) { int x = fut.get(); // 获取共享状态的值. std::cout << "value: " << x << '\n'; // 打印 value: 10.}int main (){ std::promise
prom; // 生成一个 std::promise
对象. std::future
fut = prom.get_future(); // 和 future 关联. std::thread t(print_int, std::ref(fut)); // 将 future 交给另外一个线程t. prom.set_value(10); // 设置共享状态的值, 此处和线程t保持同步. t.join(); return 0;}

 

#include 
// std::cin, std::cout, std::ios#include
// std::ref#include
// std::thread#include
// std::promise, std::future#include
// std::exception, std::current_exceptionvoid get_int(std::promise
& prom) { int x; std::cout << "Please, enter an integer value: "; std::cin.exceptions(std::ios::failbit); // throw on failbit try { std::cin >> x; // sets failbit if input is not int prom.set_value(x); } catch (std::exception&) { prom.set_exception(std::current_exception()); }}void print_int(std::future
& fut) { try { int x = fut.get(); std::cout << "value: " << x << '\n'; } catch (std::exception& e) { std::cout << "[exception caught: " << e.what() << "]\n"; }}int main(){ std::promise
prom; std::future
fut = prom.get_future(); std::thread th1(get_int, std::ref(prom)); std::thread th2(print_int, std::ref(fut)); th1.join(); th2.join(); return 0;}

 

转载于:https://www.cnblogs.com/yuguangyuan/p/5858806.html

你可能感兴趣的文章
thinkphp3.2.3分页
查看>>
python程序之profile分析
查看>>
分析与设计
查看>>
sklearn之validationcurve
查看>>
xfce4 没声音??
查看>>
nodejs 用express 访问mysql 并返回数据
查看>>
云计算之路-阿里云上:部分服务器未及时续费造成docker swarm集群故障
查看>>
properties 配置文件的读写
查看>>
Pytorch 报错总结
查看>>
GCD详细用法
查看>>
Html body的滚动条禁止与启用
查看>>
mongodb
查看>>
java线程(7)——阻塞队列BlockingQueue
查看>>
使用JavaConfig和注解方式实现零xml配置的Spring MVC项目
查看>>
P1482 Cantor表(升级版)
查看>>
VS2010设置程序启动用管理员模式
查看>>
我的第一个手机应用终于上线了
查看>>
修改placeholder的样式
查看>>
c#枚举
查看>>
JAVA多线程实现的四种方式(转自https://www.cnblogs.com/felixzh/p/6036074.html)
查看>>