std::chrono::time_point<Clock,Duration>::operator++, std::chrono::time_point<Clock,Duration>::operator--
来自 cppreference.com
< cpp | chrono | time point
constexpr time_point& operator++(); |
(1) | (自 C++20 起) |
constexpr time_point operator++( int ); |
(2) | (自 C++20 起) |
constexpr time_point& operator--(); |
(3) | (自 C++20 起) |
constexpr time_point operator--( int ); |
(4) | (自 C++20 起) |
将 *this 表示的时间点修改为 duration
的一个刻度。
如果 d_
是一个成员变量,保存了此 time_point
对象的持续时间(即自纪元以来的时间),
1) 等效于 ++d_; return *this;.
2) 等效于 return time_point(d_++).
3) 等效于 --d_; return *this;.
4) 等效于 return time_point(d_--);.
内容 |
[编辑] 参数
(无)
[编辑] 返回值
1,3) 修改后的此
time_point
的引用。2,4) 修改之前
time_point
的副本。[编辑] 示例
本节内容不完整 原因:没有示例 |
[编辑] 参见
递增或递减刻度计数 ( std::chrono::duration<Rep,Period> 的公有成员函数) | |
根据给定的持续时间修改时间点 (公有成员函数) | |
(C++11) |
执行涉及时间点的加减操作 (函数模板) |