命名空间
变体
操作

std::common_type<std::chrono::duration>

来自 cppreference.com
< cpp‎ | chrono‎ | duration
 
 
实用工具库
语言支持
类型支持 (基本类型、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 Rep1, class Period1, class Rep2, class Period2 >

struct common_type<std::chrono::duration<Rep1, Period1>,

                   std::chrono::duration<Rep2, Period2>>;
(自 C++11 起)

公开名为 type 的类型,它是两个 std::chrono::duration 的通用类型,其周期是 Period1Period2 的最大公约数。

内容

[edit] 成员类型

成员类型 定义
type std::chrono::duration<typename std::common_type<Rep1, Rep2>::type, /* see note */>

[edit] 注意

可以通过对 Period1::numPeriod2::num 的最大公约数以及 Period1::denPeriod2::den 的最小公倍数形成一个比率来计算生成的持续时间的周期。

[edit] 示例

#include <chrono>
#include <iostream>
#include <type_traits>
 
// std::chrono already finds the greatest common divisor,
// likely using std::common_type<>. We make the type
// deduction externally. 
 
template<typename T,typename S>
constexpr auto durationDiff(const T& t, const S& s)
    -> typename std::common_type<T,S>::type
{
    typedef typename std::common_type<T,S>::type Common;
    return Common(t) - Common(s);
}
 
int main() 
{
    using namespace std::literals;
 
    constexpr auto ms = 30ms;
    constexpr auto us = 1100us;
    constexpr auto diff = durationDiff(ms, us);
 
    std::cout << ms << " - " << us << " = " << diff << '\n';
}

输出

30ms - 1100us = 28900us

[edit] 另请参阅

专门化了 std::common_type 特性
(类模板专门化) [edit]
确定一组类型的通用类型
(类模板) [edit]