std::ratio_add
来自 cppreference.cn
定义于头文件 <ratio> |
||
template< class R1, class R2 > using ratio_add = /* 参见下文 */; |
(C++11 起) | |
别名模板 std::ratio_add
指代由 std::ratio 特化 R1
和 R2
所表示的两个精确有理分数之和。
结果是一个 std::ratio 特化 std::ratio<U, V>,使得给定 Num == R1::num * R2::den + R2::num * R1::den 和 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_add<R1, R2> 的结果已化为最简项;例如,std::ratio_add<std::ratio<1, 3>, 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 sum = std::ratio_add<two_third, one_sixth>; std::cout << "2/3 + 1/6 = " << sum::num << '/' << sum::den << '\n'; }
输出
2/3 + 1/6 = 5/6
[编辑] 参阅
(C++11) |
在编译时减去两个 ratio 对象(别名模板) |