std::ratio_not_equal

来自cppreference.com
< cpp‎ | numeric‎ | ratio

 
 
Numerics的图书馆
常见的数学函数
浮点环境
复数
数字阵列
伪随机数生成
编译时合理的算法 (C++11)
通用的数值运算
原文:
Generic numeric operations
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
iota(C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
编译时间合理的算法
ratio(C++11)
算术
原文:
Arithmetic
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
ratio_add(C++11)
ratio_subtract(C++11)
ratio_multiply(C++11)
ratio_divide(C++11)
比较
原文:
Comparison
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
ratio_equal(C++11)
ratio_not_equal(C++11)
ratio_less(C++11)
ratio_less_equal(C++11)
ratio_greater(C++11)
ratio_greater_equal(C++11)
 
在头文件 <ratio> 中定义
template< class R1, class R2 >
struct ratio_not_equal : std::integral_constant;
如果R1和R2的比率是不相等的,提供部件常数valuetrue平等。否则,valuefalse.
原文:
If the ratios R1 and R2 are not equal, provides the member constant value equal true. Otherwise, value is false.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

Inherited from std::integral_constant

Member constants

value
[静态的]</div></div>
true如果 R1::num != R2::num || R1::den != R2::denfalse其他方式
原文:
true if R1::num != R2::num || R1::den != R2::den , false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公共静态成员常量)

Member functions

operator bool
转换的对象bool,返回value
原文:
converts the object to bool, returns value
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公共成员函数)

Member types

类型
原文:
Type
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
Definition
value_type bool
type std::integral_constant<bool, value>

</div>

[编辑] 可能的实现

template< class R1, class R2 >
struct ratio_not_equal : std::integral_constant <
                              bool,
                              !std::ratio_equal<R1, R2>
                         > {};

[编辑] 示例

#include <iostream>
#include <ratio>
 
int main()
{
    if(std::ratio_not_equal<std::ratio<2,3>, std::ratio<1,3>>::value) {
        std::cout << "2/3 != 1/3\n";
    } else {
        std::cout << "2/3 == 1/3\n";
    }
}

输出:

2/3 != 1/3
来自“http://zh.cppreference.com/mwiki/index.php?title=cpp/numeric/ratio/ratio_not_equal&oldid=38454