std::ratio_multiply
定义于头文件 <ratio>
|
||
template< class R1, class R2 > using ratio_multiply = /* see below */; |
(C++11 起) | |
别名模版 std::ratio_multiply
指代二个由 std::ratio 的特化 R1
和 R2
所表示的准确有理分数的相乘结果。
结果是一个 std::ratio 特化 std::ratio<U, V> ,给出 Num == R1::num * R2::num 与 Denom == R1::den * R2::den (计算无算术溢出),则 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_multiply<R1, R2> 的结果已约分到最简;例如, std::ratio_multiply<std::ratio<1, 6>, std::ratio<4, 5>> 与 std::ratio<2, 15> 是同一类型。
示例
运行此代码
#include <iostream> #include <ratio> int main() { using two_third = std::ratio<2, 3>; using one_sixth = std::ratio<1, 6>; using product = std::ratio_multiply<two_third, one_sixth>; std::cout << "2/3 * 1/6 = " << product::num << '/' << product::den << '\n'; }
输出:
2/3 * 1/6 = 1/9