标准库头文件 <latch> (C++20)
来自 cppreference.com
此头文件是 线程支持 库的一部分。
类 | |
(C++20) |
单次使用线程屏障 (类) |
[编辑] 概要
namespace std { class latch; }
[编辑] 类 std::latch
namespace std { class latch { public: static constexpr ptrdiff_t max() noexcept; constexpr explicit latch(ptrdiff_t expected); ~latch(); latch(const latch&) = delete; latch& operator=(const latch&) = delete; void count_down(ptrdiff_t update = 1); bool try_wait() const noexcept; void wait() const; void arrive_and_wait(ptrdiff_t update = 1); private: ptrdiff_t counter; // exposition only }; }