如何从线程返回结果?

std::async ------ 函数模板,启动一个异步任务,返回一个std::future对象

std::future ------ 类模板(#include<future>)

cpp 复制代码
#include <iostream>
#include <thread>
#include <future>
using namespace std;

int mythread() {
    std::chrono::milliseconds dura(2000); // 1000ms = 1s, 2s
    std::this_thread::sleep_for(dura);
    cout << std::this_thread::get_id() << endl;
    return 5;
}

int main() {
    std::future<int> res = std::async(mythread);
    cout << res.get() << endl;
    return 0;
}

通过async创建并运行线程,如果需要传参跟thread方式一样(第二个参数位置。如果是对象的函数,则第二个参数是对象地址,第三个才是参数)

线程会卡在res.get()处,等待线程执行完成(相当于一个while死等,直到拿到结果)。只能get一次。

future<int> res定义res时,已经能够指出返回的类型

如果不需要拿到返回值。直接用res.wait(); 代码卡在这里等待线程返回,但本身不返回结果


可以看出,std::async与std::thread的主要区别在于:当系统资源紧张时,调用std::thread有可能导致线程创建失败,程序崩溃。

且std::thread并不会返回值给主线程

cpp 复制代码
#include <iostream>
#include <thread>
#include <future>
using namespace std;
class A {
public:
    int mythread(int x, int y) {
        std::chrono::milliseconds dura(2000); // 1000ms = 1s, 2s
        std::this_thread::sleep_for(dura);
        cout << std::this_thread::get_id() << endl;
        return x + y;
    }
};

int main() {
    A a;
    int x = 7;
    int y = 8;

    // 常用方式
    std::future<int> res = std::async(&A::mythread, &a, x, y);

    // 此处不会创建新的线程,而是直接在主线程中调用了函数------ 那有什么用呢?
    std::future<int> res1 = std::async(std::launch::deferred,&A::mythread, &a, x, y);
    
    /* 如果希望创建新的线程来执行函数。如果async不带第一个参数创建线程
     * 如果不调用res.get()函数,线程不会异步执行。所以如果明确要使用异步执行,
     * 最好是带着std::launch::async ------ 书友"松鼠."
     *  */
    auto res2 = std::async(std::launch::async, &A::mythread, &a, x, y);
    
    /* (根据系统硬件资源是否即将枯竭)有可能创建新线程。任务可能同步执行,也可能异步执行(创建线程)
     * 如果不带第一个参数,也会默认是该配置。
     *  */
    auto res3 = std::async(std::launch::async | std::launch::deferred, &A::mythread, &a, x, y);
    cout << res.get() << endl;
    return 0;
}

std::async具有不确定性。系统如果决定延迟运行(std::launch::deferred),则std::async创建的任务不会立即执行。(或不调用future的wait()/get(),任务入口函数不会执行)


std::packaged_task类模板,把各种可调用对象包装起来,方便给线程入口函数调用。

------《C++新经典》读书笔记

相关推荐
数据小爬虫@1 分钟前
如何高效利用Python爬虫按关键字搜索苏宁商品
开发语言·爬虫·python
ZJ_.3 分钟前
WPSJS:让 WPS 办公与 JavaScript 完美联动
开发语言·前端·javascript·vscode·ecmascript·wps
Narutolxy8 分钟前
深入探讨 Go 中的高级表单验证与翻译:Gin 与 Validator 的实践之道20241223
开发语言·golang·gin
Hello.Reader15 分钟前
全面解析 Golang Gin 框架
开发语言·golang·gin
禁默26 分钟前
深入浅出:AWT的基本组件及其应用
java·开发语言·界面编程
yuyanjingtao29 分钟前
CCF-GESP 等级考试 2023年9月认证C++四级真题解析
c++·青少年编程·gesp·csp-j/s·编程等级考试
Code哈哈笑36 分钟前
【Java 学习】深度剖析Java多态:从向上转型到向下转型,解锁动态绑定的奥秘,让代码更优雅灵活
java·开发语言·学习
程序猿进阶39 分钟前
深入解析 Spring WebFlux:原理与应用
java·开发语言·后端·spring·面试·架构·springboot
qq_4336184441 分钟前
shell 编程(二)
开发语言·bash·shell
闻缺陷则喜何志丹44 分钟前
【C++动态规划 图论】3243. 新增道路查询后的最短距离 I|1567
c++·算法·动态规划·力扣·图论·最短路·路径