[5 使用C++11让多线程开发变得简单] 5.7 线程异步操作函数 std::async

std::async比std::promise,std::packaged_task更高一层,它可以创建异步的task,异步任务返回的结果也保存在future中。当获取异步任务的结果时,调用future.get();不关注异步任务的结果,只等待任务完成的话,调用future.wait()。

async的声明:

async(std::launch::async | std::launch::deferred, f, args...)

(1)第一个参数:线程的创建策略

std::launch::async:调用async时就开始创建线程。

std::launch::deferred:延迟加载方式创建线程。

(2)第二个参数:线程函数

(3)第三个参数:线程函数的参数

async的基本用法:

std::future<int> f1 = std::async(std::launch::async, [](){
    return 8;
});
cout << f1.get() << endl;

输出:
8
std::future<int> f2 = std::async(std::launch::async, [](){
    cout << 8 << endl;
});
f2.wait();

输出:
8
std::future<int> future = std::async(std::launch::async, [](){
    std::this_thread::sleep(std::chrono::seconds(3));
    return 8;
});
cout << "waiting..." << endl;
std::future_status status;
do {
    status = future.wait_for(std::chrono::seconds(1));
    if (status == std::future_status::deferred) {
        cout << "deferred" << endl;
    } else if (status == std::future_status::timeout) {
        cout << "timeout" << endl;
    } else if (status == std::future_status::ready) {
        cout << "ready" << endl;
    }
} while (status != std::future_status::ready);
cout << "result is " << futute.get() << endl;

可能输出:
waiting...
timeout
timeout
ready
result is 8

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值