std::chrono::time_point<Clock,Duration>::operator+=, operator-=
来自 cppreference.com
< cpp | chrono | time point
time_point& operator+=( const duration& d ); |
(1) | (自 C++11 起) (自 C++17 起为 constexpr) |
time_point& operator-=( const duration& d ); |
(2) | (自 C++11 起) (自 C++17 起为 constexpr) |
通过给定的持续时间修改时间点。
1) 将偏移量 d 应用于
pt
。实际上,d 被添加到内部存储的持续时间 d_
中,如 d_ += d。2) 将偏移量 d 应用于
pt
,方向为负。实际上,d 从内部存储的持续时间 d_
中减去,如 d_ -= d。内容 |
[编辑] 参数
d | - | 要应用的时间偏移量 |
[编辑] 返回值
*this
[编辑] 异常
可能抛出实现定义的异常。
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
(C++11) |
执行涉及时间点的加法和减法运算 (函数模板) |