命名空间
变体
操作

std::chrono::time_point_cast

来自 cppreference.com
< cpp‎ | chrono‎ | 时间点
 
 
工具库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序工具
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
 
定义在头文件 <chrono>
template< class ToDuration, class Clock, class Duration >

std::chrono::time_point<Clock, ToDuration>

    time_point_cast( const std::chrono::time_point<Clock, Duration> &t );
(自 C++11)
(直到 C++14)
template< class ToDuration, class Clock, class Duration >

constexpr std::chrono::time_point<Clock, ToDuration>

    time_point_cast( const std::chrono::time_point<Clock, Duration> &t );
(自 C++14)

将一个 std::chrono::time_point 从一种持续时间转换为另一种持续时间。

time_point_cast 仅在 ToDurationstd::chrono::duration 的特化时参与重载解析。

内容

[编辑] 参数

t - 要转换的 time_point

[编辑] 返回值

std::chrono::time_point<Clock, ToDuration>(
    std::chrono::duration_cast<ToDuration>(t.time_since_epoch()))
.

[编辑] 示例

#include <chrono>
#include <iostream>
using namespace std::chrono_literals;
 
using Clock = std::chrono::high_resolution_clock;
using Ms = std::chrono::milliseconds;
using Sec = std::chrono::seconds;
 
template<class Duration>
using TimePoint = std::chrono::time_point<Clock, Duration>;
 
inline void print_ms(const TimePoint<Ms>& time_point)
{
    std::cout << time_point.time_since_epoch().count() << " ms\n";
}
 
int main()
{
    TimePoint<Sec> time_point_sec{4s};
 
    // implicit cast, no precision loss
    TimePoint<Ms> time_point_ms{time_point_sec};
    print_ms(time_point_ms); // 4000 ms
 
    time_point_ms = TimePoint<Ms>{5756ms};
    print_ms(time_point_ms); // 5756 ms
 
    // explicit cast, need when precision loss may happen
    // 5756 truncated to 5000
    time_point_sec = std::chrono::time_point_cast<Sec>(time_point_ms);
    print_ms(time_point_sec); // 5000 ms
}

输出

4000 ms
5756 ms
5000 ms

[编辑] 另请参阅

将 time_point 转换为另一个,向下取整
(函数模板) [编辑]
将 time_point 转换为另一个,向上取整
(函数模板) [编辑]
将 time_point 转换为另一个,四舍五入,舍入到偶数
(函数模板) [编辑]
将持续时间转换为另一个,使用不同的滴答间隔
(函数模板) [编辑]