这是我正在使用的测试程序。有人可以详细描述发生什么情况以及产生此输出的原因吗?
为什么launch::async获得g_num的值作为0,而launch::deferred获得100呢?launch::asynclaunch::deferred都获得了arg堆栈上的main正确值,我相信这意味着它们应该都已获得100
编码:

#include <iostream>
#include <future>
using namespace std;

thread_local int g_num;

int read_it(int x) {
    return g_num + x;
}

int main()
{
    g_num = 100;

    int arg = 1;
    future<int> fut = async(launch::deferred, read_it, arg);
    arg = 2;
    future<int> fut2 = async(launch::async, read_it, arg);

    cout << "Defer: " << fut.get() << endl;
    cout << "Async: " << fut2.get() << endl;

    return 0;
}
输出:
Defer: 101
Async: 2

最佳答案

documentation声明launch::deferred将在调用线程上调用该函数,而launch::async将在新线程上调用该函数。

对于调用线程,g_num的值是您在main中设置的值。对于新线程,该值是值初始化的(0int),因为您从未设置它。感谢@MilesBudnek的更正。

关于c++ - C++异步+ future (延迟与异步),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48918923/

10-13 07:01