std::chrono::round(std::chrono::duration)
来自 cppreference.com
在头文件中定义 <chrono> |
||
template< class ToDuration, class Rep, class Period > constexpr ToDuration round( const std::chrono::duration<Rep, Period>& d ); |
(自 C++17 起) | |
返回可表示为 ToDuration
类型的值 t
,该值最接近 d。如果存在两个这样的值,则返回偶数值(即,值 t
使得 t % 2 == 0)。
除非 ToDuration
是 std::chrono::duration 的特化,并且 std::chrono::treat_as_floating_point_v<typename ToDuration::rep> 为 false,否则该函数不参与重载解析。
内容 |
[编辑] 参数
d | - | 要转换的持续时间 |
[编辑] 返回值
d 向最接近的 ToDuration
类型的持续时间舍入,在半途情况下向偶数舍入。
[编辑] 可能的实现
namespace detail { template<class> inline constexpr bool is_duration_v = false; template<class Rep, class Period> inline constexpr bool is_duration_v< std::chrono::duration<Rep, Period>> = true; } template<class To, class Rep, class Period, class = std::enable_if_t<detail::is_duration_v<To> && !std::chrono::treat_as_floating_point_v<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; } |
[编辑] 示例
运行此代码
#include <chrono> #include <iomanip> #include <iostream> int main() { using namespace std::chrono_literals; std::cout << "Duration\tFloor\tRound\tCeil\n"; for (using Sec = std::chrono::seconds; auto const d : {+4999ms, +5000ms, +5001ms, +5499ms, +5500ms, +5999ms, -4999ms, -5000ms, -5001ms, -5499ms, -5500ms, -5999ms}) std::cout << std::showpos << d << "\t\t" << std::chrono::floor<Sec>(d) << '\t' << std::chrono::round<Sec>(d) << '\t' << std::chrono::ceil <Sec>(d) << '\n'; }
输出
Duration Floor Round Ceil +4999ms +4s +5s +5s +5000ms +5s +5s +5s +5001ms +5s +5s +6s +5499ms +5s +5s +6s +5500ms +5s +6s +6s +5999ms +5s +6s +6s -4999ms -5s -5s -4s -5000ms -5s -5s -5s -5001ms -6s -5s -5s -5499ms -6s -5s -5s -5500ms -6s -6s -5s -5999ms -6s -6s -5s
[编辑] 另请参阅
(C++11) |
将持续时间转换为另一个持续时间,使用不同的刻度间隔 (函数模板) |
(C++17) |
将持续时间转换为另一个持续时间,向下舍入 (函数模板) |
(C++17) |
将持续时间转换为另一个持续时间,向上舍入 (函数模板) |
将时间点转换为另一个时间点,四舍五入到最接近的值,在半途情况下向偶数舍入 (函数模板) | |
(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11)(C++11) |
最接近的整数,在半途情况下向零舍入 (函数) |