std::async不异步执行问题分析

 1、问题描述

直接调用std::async,出现不异步执行问题,使用以下代码,简单的测试std::async执行情况

#include <iostream>
#include <future>
using namespace std;
int main()
{
	cout << "test async begin" << endl;
	async(launch::async, []()
		{
			std::cout << "start" << std::endl;
			Sleep(200);
			std::cout << "end" << std::endl;
		});
	cout << "test async finish" << endl;
	system("pause");
	return 0;
}

预期的结果是这样的:

test async begin
test async finish
start
end

但执行后的结果:

test async begin
start
end
test async finish

2、解决问题

为std::async添加返回值以后,得到期望的结果,更改后如下:

future<void> future = async(launch::async, []()
		{
			std::cout << "start" << std::endl;
			Sleep(200);
			std::cout << "end" << std::endl;
		});

3、问题分析

通过查看std::async参考注释部分发现:

std::async - cppreference.com

If the std::future obtained from std::async is not moved from or bound to a reference, the destructor of the std::future will block at the end of the full expression until the

asynchronous operation completes, essentially making code ... synchronous

由于刚开始没有存储std::async返回值,它将在表达式(即std::async调用)的末尾被销毁,并将阻塞直到线程结束。在添加返回值后,std::async调用后立即返回,在std::async调用结束前返回值的销毁将被阻止,有点类似如下代码:

std::thread execute([this]()
		{
			dosomething();
		});
execute.detach();//分离,驻留后台

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值