std::ratio_divide
来自 cppreference.com
定义在头文件 <ratio> 中 |
||
template< class R1, class R2 > using ratio_divide = /* 参见下文 */; |
(自 C++11 起) | |
别名模板 std::ratio_divide
表示用 std::ratio 特化 R1
和 R2
表示的两个精确有理数相除的结果。
结果是一个 std::ratio 特化 std::ratio<U, V>,使得给定 Num == R1::num * R2::den 和 Denom == R1::den * R2::num(在不发生算术溢出的情况下计算),U
是 std::ratio<Num, Denom>::num,V
是 std::ratio<Num, Denom>::den.
[编辑] 注释
如果 U
或 V
在 std::intmax_t 中不可表示,则程序格式错误。如果 Num
或 Denom
在 std::intmax_t 中不可表示,则程序格式错误,除非实现为 U
和 V
提供了正确的值。
上述定义要求 std::ratio_divide<R1, R2> 的结果已简化为最简分数;例如,std::ratio_divide<std::ratio<1, 12>, std::ratio<1, 6>> 与 std::ratio<1, 2> 具有相同的类型。
[编辑] 示例
运行此代码
#include <iostream> #include <ratio> int main() { using two_third = std::ratio<2, 3>; using one_sixth = std::ratio<1, 6>; using quotient = std::ratio_divide<two_third, one_sixth>; static_assert(std::ratio_equal_v<quotient, std::ratio<0B100, 0X001>>); std::cout << "(2/3) / (1/6) = " << quotient::num << '/' << quotient::den << '\n'; }
输出
(2/3) / (1/6) = 4/1
[编辑] 另请参见
(C++11) |
在编译时将两个 ratio 对象相乘(别名模板) |