std::suspend_always
来自 cppreference.com
在头文件 <coroutine> 中定义 |
||
struct suspend_always; |
(自 C++20 起) | |
suspend_always
是一个空类,可用于指示 await 表达式 始终挂起且不生成值。
内容 |
[edit] 成员函数
await_ready (C++20) |
指示 await 表达式始终挂起 (公共成员函数) |
await_suspend (C++20) |
无操作 (公共成员函数) |
await_resume (C++20) |
无操作 (公共成员函数) |
std::suspend_always::await_ready
constexpr bool await_ready() const noexcept { return false; } |
(自 C++20 起) | |
始终返回 false,表示 await 表达式始终挂起。
std::suspend_always::await_suspend
constexpr void await_suspend( std::coroutine_handle<> ) const noexcept {} |
(自 C++20 起) | |
什么也不做。
std::suspend_always::await_resume
constexpr void await_resume() const noexcept {} |
(自 C++20 起) | |
什么也不做。如果使用 suspend_always
,await 表达式将不生成值。
[edit] 示例
本节不完整 原因:没有示例 |
[edit] 另请参阅
(C++20) |
指示 await 表达式不应挂起 (类) |