CppDS.com

C++ 98 11 14 17 20 手册

std::ratio_divide

来自cppreference.com
< cpp‎ | numeric‎ | ratio
定义于头文件 <ratio>
template< class R1, class R2 >
using ratio_divide = /* see below */;
(C++11 起)

别名模板 std::ratio_divide 指代由 std::ratio 特化 R1R2 表示的二个准确有理分数相除的结果。

结果是 std::ratio 特化 std::ratio<U, V> ,给定 Num == R1::num * R2::denDenom == R1::den * R2::num (计算无算术溢出),则 Ustd::ratio<Num, Denom>::numVstd::ratio<Num, Denom>::den

注意

UV 不能以 std::intmax_t 表示,则程序为病式。若 NumDenom 不能表示为 std::intmax_t ,则程序为病式,除非实现生成 UV 的正确值。

上述定义要求 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>;
    std::cout << "(2/3) / (1/6) = " << quotient::num << '/' << quotient::den << '\n';
}

输出:

(2/3) / (1/6) = 4/1
关闭