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