C++ 参考手册

位置:首页 > C++ 参考手册 >日期和时间工具 >std::chrono::time_point > std::common_type(std::chrono::time_point)

template <class Clock, class Duration1, class Duration2>

struct common_type<std::chrono::time_point<Clock, Duration1>,
                   std::chrono::time_point<Clock, Duration2>> {
    typedef std::chrono::time_point<
        Clock, typename std::common_type<Duration1, Duration2>::type> type;

};
(C++11 起)

暴露名为 type 的类型,它是二个 std::chrono::time_point 的公共类型。

注意

二个 std::chrono::time_point 类型的公共类型是 std::chrono::time_point ,拥有与二个类型相同的时钟,及其时长的 std::common_type

示例

本节未完成
原因:暂无示例

参阅

确定一组类型的公共类型
(类模板)