类模板
<ratio>

std::ratio_equal

template <class R1, class R2> ratio_equal;
比较 ratio
该类型继承自相应的 integral_constant 类型(true_typefalse_type),用于指示 R1 是否与 R2 相等。
结果类型与以下定义相同:ratio_equal定义为
1
2
template <class R1, class R2>
struct ratio_equal : integral_constant<bool, R1::num==R2::num && R1::den==R2::den> {};

模板参数

R1,R2
要比较的 ratio 类型。

成员常量

继承自 integral_constant
成员常量定义
truefalse

成员类型

继承自 integral_constant
成员类型定义
value_typebool
类型true_type 或 false_type

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ratio_equal example
#include <iostream>
#include <ratio>

int main ()
{
  typedef std::ratio<1,2> one_half;
  typedef std::ratio<2,4> two_fourths;

  std::cout << "1/2 == 2/4 ? " << std::boolalpha;
  std::cout << std::ratio_equal<one_half,two_fourths>::value << std::endl;

  return 0;
}

输出
1/2 == 2/4 ? true


另见