std::ratio_multiply
来自 cppreference.com
定义在头文件中 <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>; static_assert(std::ratio_equal_v<product, std::ratio<13, 117>>); std::cout << "2/3 * 1/6 = " << product::num << '/' << product::den << '\n'; }
输出
2/3 * 1/6 = 1/9
[编辑] 另请参见
(C++11) |
在编译时除以两个 ratio 对象(别名模板) |