std::chrono::round(std::chrono::duration)
定义于头文件 <chrono>
|
||
template <class ToDuration, class Rep, class Period> constexpr ToDuration round(const duration<Rep, Period>& d); |
(C++17 起) | |
返回可表示为 ToDuration
的最接近 d
的 t
。若有二个此种值,则返回偶数值(即使得 t % 2 == 0 的值 t
)。
函数不参与重载,除非 ToDuration
是 std::chrono::duration 的实例且 std::chrono::treat_as_floating_point<typename ToDuration::rep>::value 为 false
参数
d | - | 要转换的时期 |
返回值
取整到 ToDuration
类型的最接近时期的 d
,两值正中的情况取到偶数。
可能的实现
template <class T> struct is_duration : std::false_type {}; template <class Rep, class Period> struct is_duration< std::chrono::duration<Rep, Period>> : std::true_type {}; template <class To, class Rep, class Period, class = std::enable_if_t<is_duration<To>{} && !std::chrono::treat_as_floating_point<typename To::rep>{}>> constexpr To round(const std::chrono::duration<Rep, Period>& d) { To t0 = std::chrono::floor<To>(d); To t1 = t0 + To{1}; auto diff0 = d - t0; auto diff1 = t1 - d; if (diff0 == diff1) { if (t0.count() & 1) return t1; return t0; } else if (diff0 < diff1) { return t0; } return t1; } |
示例
本节未完成 原因:暂无示例 |
参阅
转换时长到另一个拥有不同嘀嗒间隔的时长 (函数模板) | |
(C++17) |
以向下取整的方式,将一个时长转换为另一个时长 (函数模板) |
(C++17) |
以向上取整的方式,将一个时长转换为另一个时长 (函数模板) |
转换 time_point 到另一个,就近取整,偶数优先 (函数模板) | |
(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11) |
最接近整数,中间情况下向远离零舍入 (函数) |