命名空间
变体
操作

std::ratio_add

来自 cppreference.com
< cpp‎ | numeric‎ | ratio
 
 
元编程库
类型特性
类型类别
(C++11)
(C++14)  
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
类型属性
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)(until C++20*)
(C++11)(deprecated in C++20)
(C++11)
类型特性常量
元函数
(C++17)
支持的操作
关系和属性查询
类型修改
(C++11)(C++11)(C++11)
类型转换
(C++11)(deprecated in C++23)
(C++11)(deprecated in C++23)
(C++11)
(C++11)
(C++17)

(C++11)(until C++20*)(C++17)
编译时有理数运算
编译时整数序列
 
编译时有理数运算
(C++11)
算术
ratio_add
(C++11)
比较
(C++11)
 
定义在头文件 <ratio>
template< class R1, class R2 >
using ratio_add = /* see below */;
(自 C++11 起)

别名模板 std::ratio_add 表示由 std::ratio 特化 R1R2 表示的两个精确有理分数相加的结果。

结果是一个 std::ratio 特化 std::ratio<U, V>,使得给定 Num == R1::num * R2::den + R2::num * R1::denDenom == R1::den * R2::den(在没有算术溢出情况下计算),Ustd::ratio<Num, Denom>::numVstd::ratio<Num, Denom>::den

[编辑] 注释

如果 UVstd::intmax_t 中不可表示,则程序格式错误。如果 NumDenomstd::intmax_t 中不可表示,则除非实现为 UV 生成正确的值,否则程序格式错误。

上述定义要求 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

[编辑] 另请参阅

在编译时减去两个 ratio 对象
(别名模板)[编辑]