C++中的ratio_greater_equal()函数
给出了在C++中显示ratio_greater_equal()函数工作的任务。
给定的函数Ratio_greater_equal检查ratio1的值是否大于或等于ratio2。它返回一个布尔常量“值”,如果ratio1大于或等于ratio2,则返回true,否则返回false。
语法
Templateratio_greater_equal
参数
该函数接受两个模板参数,一个是ratio1,另一个是ratio2,要进行比较。
此功能的说明
在此函数中,如果ratio1的值大于或等于ratio2的值,则此函数将返回布尔值,即为真,即整数位1,否则将返回假,即整数位0。
typedef的解释
typedef用于给数据类型一个新的名字,在这个程序中我们使用typedef来声明比率。Typedef创建可以在任何地方使用的别名来代替类型名称,它可以在同一行声明一个或多个标识符,也可以用于声明数组和函数类型、指针、引用、类类型等。
例如
Input: 1/3 and 3/9 Output: 3/9 is greater than 1/3. Input: 4/16 and 4/16 Output: 4/16 is equals to the 4/16.
我们在以下程序中使用的方法
首先我们声明两个比率
然后分配两个比率的值。
然后我们检查ratio1的值是否大于或等于ratio2的值。
使用ratio_greater_equal我们可以检查
示例
//用于演示ratio_greater_equal工作的C++代码 #include输出结果#include using namespace std; int main( ){ //申报比率 typedef ratio<10, 100> ratio1; typedef ratio<1, 10> ratio2; //检查ratio1是否大于或等于ratio2。 if (ratio_greater_equal : : value ) cout< " ratio1 is greater than or equal to ratio2"; else cout<< " ratio1 is not greater than or equal to ratio2"; cout<< "endl"; return 0; }
如果我们运行上面的代码,它将生成以下输出
10/100 is greater than or equal to 1/10 1/3 is not greater than or equal to 3/9.