std::packaged_task::reset
来自cppreference.com
< cpp | thread | packaged task
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void reset(); |
(C++11 起) | |
。将的国家放弃以前执行的结果。新的共享状态,构建.
原文:
Resets the state abandoning the results of previous executions. New shared state is constructed.
。相当于*this = packaged_task(std::move(f)),
f
是存储任务原文:
Equivalent to *this = packaged_task(std::move(f)), where
f
is the stored task.[编辑] 。参数。
。 (无)。
===。 返回值。===
。 (无)。