类模板
<ratio>

std::ratio_not_equal

template <class R1, class R2> ratio_not_equal;
比较 ratio 的不等性
此类型继承自适当的 integral_constant 类型(true_typefalse_type)以指示 R1 是否与 R2 不相等。
结果类型与以下定义相同:ratio_not_equal定义为
1
2
template <class R1, class R2>
struct ratio_not_equal : integral_constant < bool, !ratio_equal<R1,R2>::value > {};

模板参数

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_not_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_not_equal<one_half,two_fourths>::value << std::endl;

  return 0;
}

输出
1/2 != 2/4 ? false


另见