类模板
<ratio>
std::ratio_add
template <class R1, class R2> ratio_add;
将两个 ratio 相加
此类模板别名生成一个 ratio 类型,它是 R1 和 R2 ratio 类型的和。
结果类型与以下定义相同:ratio_add定义为
1 2
|
template <typename R1, typename R2>
using ratio_add = ratio < R1::num*R2::den+R2::num*R1::den, R1::den*R2::den >;
|
程序不得导致上述定义中的任何表达式展开为无法表示为
intmax_t的值。
模板参数
- R1,R2
- 要相加的 ratio 类型。
成员常量
与ratio(ratio_add仅仅是一个模板别名)。
成员 constexpr | 描述 |
num | 分子 |
den | 分母 |
的值num和den表示加法运算的结果。
成员类型
与ratio(ratio_add仅仅是一个模板别名)。
成员类型 | 定义 | 描述 |
类型 | ratio<num,den> | 加法结果的 ratio 类型。 |
示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
// ratio_add example
#include <iostream>
#include <ratio>
int main ()
{
typedef std::ratio<1,2> one_half;
typedef std::ratio<2,3> two_thirds;
typedef std::ratio_add<one_half,two_thirds> sum;
std::cout << "sum = " << sum::num << "/" << sum::den;
std::cout << " (which is: " << ( double(sum::num) / sum::den ) << ")" << std::endl;
return 0;
}
|
输出
sum = 7/6 (which is: 1.166667)
|