gpt4 book ai didi

c++ - 在 C++11 中如何使用 std::async with std::launch::any

转载 作者:行者123 更新时间:2023-11-28 03:05:46 25 4
gpt4 key购买 nike

从网站 cppreference.com ,我了解到:“如果在策略中设置了 std::launch::async 和 std::launch::deferred 标志,则执行异步执行还是延迟评估取决于实现。”

如何理解'实现是执行异步执行还是惰性计算'。如果我为它们都设置标志,那么这是在新线程中执行还是在本地线程中延迟执行?

最佳答案

How to understand 'the implementation whether to perform asynchronous execution or lazy evaluation'.

好吧,就像它所说的那样。当两个标志都设置时,实现自行决定是在新的/不同的线程中开始计算(对应于 std::launch::async)还是使用惰性求值(对应于 >std::launch::deferred).后者意味着它不会运行任何计算,直到您使用 std::future::getstd::future::wait 和 friend 查询返回的 future ,这将导致在“本地”线程中执行计算。

And if i set flag for both of them, then, is this execute in a new thread or deferred execute in local thread?

如上文所述,在这种情况下,由实现决定做什么,每次调用 std::async(std::launch::async | std::launch::延迟,...)

关于c++ - 在 C++11 中如何使用 std::async with std::launch::any,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19784323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com