C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 常用数学函数
- 数学特殊函数
- 伪随机数生成
- 浮点环境
- std::complex
- std::valarray
- 编译时有理数算术
- std::ratio_equal
- std::ratio_not_equal
- std::ratio_less
- std::ratio_less_equal
- std::ratio_greater
- std::ratio_greater_equal
- std::ratio
- std::ratio_add
- std::ratio_subtract
- std::ratio_multiply
- std::ratio_divide
- std::midpoint
- std::lerp
- std::has_single_bit
- std::bit_ceil
- std::bit_floor
- std::bit_width
- std::rotl
- std::gcd
- std::lcm
- 数学常数
- std::bit_cast
- std::rotr
- std::countl_zero
- std::countl_one
- std::countr_zero
- std::countr_one
- std::popcount
- 注释
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::ratio_less
定义于头文件 <ratio>
|
||
template< class R1, class R2 > struct ratio_less : std::integral_constant; |
(C++11 起) | |
若比例 R1 小于比例 R2 ,则提供等于 true 的成员常量 value
。否则 value
等于 false 。
辅助变量模板
template< class R1, class R2 > inline constexpr bool ratio_less_v = ratio_less<R1, R2>::value; |
(C++17 起) | |
继承自 std::integral_constant
成员常量
value [静态] |
若 R1::num * R2::den < R2::num * R1::den 或避免溢出的等价表达式,则为 true ,否则为 false (公开静态成员常量) |
成员函数
operator bool |
转换对象为 bool ,返回 value (公开成员函数) |
operator() (C++14) |
返回 value (公开成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool
|
type
|
std::integral_constant<bool, value> |
示例
运行此代码
#include <iostream> #include <ratio> int main() { if (std::ratio_less<std::ratio<23,37>, std::ratio<57,90>>::value) { std::cout << "23/37 < 57/90\n"; } }
输出:
23/37 < 57/90