std::ratio_greater

来自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_greater : std::integral_constant;
如果比R1是大于比R2比,为会员提供恒定的value等于true。否则,valuefalse.
原文:
If the ratio R1 is greater than than the ratio R2, 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::den > R2::num * R1::den, or equivalent expression that avoids overflow ,false其他方式
原文:
true if R1::num * R2::den > R2::num * R1::den, or equivalent expression that avoids overflow , 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>

[编辑] 示例

来自“http://zh.cppreference.com/mwiki/index.php?title=cpp/numeric/ratio/ratio_greater&oldid=38449