【cmu15445c++入门】(13)C++的std::promise

2024-03-02 20:20
文章标签 c++ 入门 std 13 promise cmu15445

本文主要是介绍【cmu15445c++入门】(13)C++的std::promise,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、说明

 std::promise 是C++11并发编程中常用的一个类,常配合std::future使用。其作用是在一个线程t1中保存一个类型typename T的值,可供相绑定的std::future对象在另一线程t2中获取

二、代码

#include <chrono>
#include <future>
#include <iostream>
#include <numeric>
#include <thread>
#include <vector>void accumulate(int task_cost_second, std::promise<int> accumulate_promise) {std::cout << "before set_value" << std::endl;std::this_thread::sleep_for(std::chrono::seconds(task_cost_second));accumulate_promise.set_value(task_cost_second);  // 提醒 futurestd::cout << "after set_value" << std::endl;
}void accumulate2(int task_cost_second, std::promise<int> accumulate_promise) {std::cout << "before set_value" << std::endl;std::this_thread::sleep_for(std::chrono::seconds(task_cost_second));accumulate_promise.set_value(task_cost_second);  // 提醒 futurestd::cout << "after set_value" << std::endl;
}int main() {// 用 promise<int> 在线程间传递结果。std::cout << "**********第一个测试**********" << std::endl;std::promise<int> accumulate_promise;std::future<int> accumulate_future = accumulate_promise.get_future();std::thread work_thread(accumulate, 3, std::move(accumulate_promise));// future::get() 将等待直至该 future 拥有合法结果并取得它// 无需在 get() 前调用 wait()// accumulate_future.wait();  // 等待结果std::cout << "before accumulate_future.get()" << std::endl;std::this_thread::sleep_for(std::chrono::seconds(5));std::cout << "result=" << accumulate_future.get() << '\n';std::cout << "ater accumulate_future.get()" << std::endl;work_thread.join();  // wait for thread completion// 演示用 promise<void> 在线程间对状态发信号std::cout << "**********第二个测试**********" << std::endl;std::promise<int> accumulate_promise1;std::future<int> accumulate_future1 = accumulate_promise1.get_future();std::thread work_thread1(accumulate2, 3, std::move(accumulate_promise1));// future::get() 将等待直至该 future 拥有合法结果并取得它// 无需在 get() 前调用 wait()// accumulate_future.wait();  // 等待结果std::cout << "before accumulate_future.get()" << std::endl;std::this_thread::sleep_for(std::chrono::seconds(1));std::cout << "result=" << accumulate_future1.get() << '\n';std::cout << "ater accumulate_future.get()" << std::endl;work_thread1.join();  // wait for thread completion
}

 三、结果

 不难发现两个测试用例线程的sleep时间不一样,导致的输出不一样。

这篇关于【cmu15445c++入门】(13)C++的std::promise的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/767312

相关文章

C++中使用vector存储并遍历数据的基本步骤

《C++中使用vector存储并遍历数据的基本步骤》C++标准模板库(STL)提供了多种容器类型,包括顺序容器、关联容器、无序关联容器和容器适配器,每种容器都有其特定的用途和特性,:本文主要介绍C... 目录(1)容器及简要描述‌php顺序容器‌‌关联容器‌‌无序关联容器‌(基于哈希表):‌容器适配器‌:(

C++中实现调试日志输出

《C++中实现调试日志输出》在C++编程中,调试日志对于定位问题和优化代码至关重要,本文将介绍几种常用的调试日志输出方法,并教你如何在日志中添加时间戳,希望对大家有所帮助... 目录1. 使用 #ifdef _DEBUG 宏2. 加入时间戳:精确到毫秒3.Windows 和 MFC 中的调试日志方法MFC

深入理解C++ 空类大小

《深入理解C++空类大小》本文主要介绍了C++空类大小,规定空类大小为1字节,主要是为了保证对象的唯一性和可区分性,满足数组元素地址连续的要求,下面就来了解一下... 目录1. 保证对象的唯一性和可区分性2. 满足数组元素地址连续的要求3. 与C++的对象模型和内存管理机制相适配查看类对象内存在C++中,规

在 VSCode 中配置 C++ 开发环境的详细教程

《在VSCode中配置C++开发环境的详细教程》本文详细介绍了如何在VisualStudioCode(VSCode)中配置C++开发环境,包括安装必要的工具、配置编译器、设置调试环境等步骤,通... 目录如何在 VSCode 中配置 C++ 开发环境:详细教程1. 什么是 VSCode?2. 安装 VSCo

C++11的函数包装器std::function使用示例

《C++11的函数包装器std::function使用示例》C++11引入的std::function是最常用的函数包装器,它可以存储任何可调用对象并提供统一的调用接口,以下是关于函数包装器的详细讲解... 目录一、std::function 的基本用法1. 基本语法二、如何使用 std::function

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

C++包装器

包装器 在 C++ 中,“包装器”通常指的是一种设计模式或编程技巧,用于封装其他代码或对象,使其更易于使用、管理或扩展。包装器的概念在编程中非常普遍,可以用于函数、类、库等多个方面。下面是几个常见的 “包装器” 类型: 1. 函数包装器 函数包装器用于封装一个或多个函数,使其接口更统一或更便于调用。例如,std::function 是一个通用的函数包装器,它可以存储任意可调用对象(函数、函数

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�