std::common_type<std::chrono::duration>
来自 cppreference.com
定义在头文件 <chrono> 中 |
||
template< class Rep1, class Period1, class Rep2, class Period2 > struct common_type<std::chrono::duration<Rep1, Period1>, |
(自 C++11 起) | |
公开名为 type
的类型,它是两个 std::chrono::duration 的通用类型,其周期是 Period1
和 Period2
的最大公约数。
内容 |
[edit] 成员类型
成员类型 | 定义 |
type
|
std::chrono::duration<typename std::common_type<Rep1, Rep2>::type, /* see note */> |
[edit] 注意
可以通过对 Period1::num 和 Period2::num 的最大公约数以及 Period1::den 和 Period2::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 特性 (类模板专门化) | |
(C++11) |
确定一组类型的通用类型 (类模板) |