std::launch
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <future> 中定义
|
||
enum class launch : /* unspecified */ { async = /* unspecified */, |
(C++11 起) | |
。指定std::async功能执行的任务的启动策略。
std::launch
是一个BitmaskType
(枚举,整数或bitset的).原文:
Specifies the launch policy for a task executed by the std::async function.
std::launch
is a BitmaskType
(enumeration, integer, or bitset).。表示的各个位的定义有以下常量由标准库。
原文:
The following constants denoting individual bits are defined by the standard library:
。常数。
|
Explanation |
std::launch::async
|
。启动一个新的线程异步执行的任务。
原文: a new thread is launched to execute the task asynchronously |
std::launch::deferred
|
。
在调用线程的第一次请求其结果(懒惰的评估)执行任务。
原文: the task is executed on the calling thread the first time its result is requested (lazy evaluation) |
。此外,允许实现:。
原文:
In addition, implementations are allowed to:
- 。定义指定适用于发射政策的一个子集对任务的相互作用的限制的额外的位和位掩码。原文:define additional bits and bitmasks to specify restrictions on task interactions applicable to a subset of launch policies, and
- 。使这些额外的位掩码第一个(默认)过载std::async.原文:enable those additional bitmasks for the first (default) overload of std::async.
[编辑] 。另请参阅。
(C++11) |
异步运行的功能(可能在一个新的线程),并返回一个std::future,将持有的结果 原文: runs a function asynchronously (potentially in a new thread) and returns a std::future that will hold the result (函数模板) |