类模板
<ratio>

std::ratio_less

template <class R1, class R2> ratio_less;
比较 ratio 的小于关系
此类型继承自合适的 integral_constant 类型(true_typefalse_type),用于指示 R1 是否小于 R2
结果类型与以下定义相同:ratio_less定义为
1
2
template <class R1, class R2>
struct ratio_less : integral_constant < bool, R1::num*R2::den < R2::num*R1::den > {};

程序不得导致上述定义中的任何表达式展开为无法表示为intmax_t的值。

模板参数

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_less example
#include <iostream>
#include <ratio>

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

  std::cout << "1/3 < 1/2 ? " << std::boolalpha;
  std::cout << std::ratio_less<one_third,one_half>::value << std::endl;

  return 0;
}

输出
1/3 < 1/2 ? true


另见