std::common_type<std::chrono::time_point>
来自cppreference.com
< cpp | chrono | time point
template< class Clock, class Duration1, class Duration2 > struct common_type<std::chrono::time_point<Clock, Duration1>, |
(C++11 起) | |
暴露名为 type
的类型,它是两个 std::chrono::time_point 的公共类型。
成员类型
成员类型 | 定义 |
type
|
std::chrono::time_point<Clock, typename std::common_type<Duration1, Duration2>::type> |
注解
两个 std::chrono::time_point 类型的公共类型是 std::chrono::time_point,拥有与两个类型相同的时钟,及其时长的 std::common_type。
示例
本节未完成 原因:暂无示例 |
参阅
特化 std::common_type 特征 (类模板特化) | |
(C++11) |
确定一组类型的公共类型 (类模板) |