std::chrono::time_point<Clock,Duration>::operator++, std::chrono::time_point<Clock,Duration>::operator--

来自cppreference.com
< cpp‎ | chrono‎ | time point
 
 
工具库
通用工具
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)

初等字符串转换
(C++17)
(C++17)
栈踪
 
 
 
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 起)

duration 的一个计次修改时间点 *this

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> 的公开成员函数)
以给定的 duration 修改 time_point
(公开成员函数)
实施涉及时间点的加法和减法运算
(函数模板)