本文是参考一篇博文写出的,算是对自己学习的记录,参考链接放在了文章末尾,欢迎大家一起讨论学习。
ratio的基本知识
- num代表分子,den代表分母。
- 当为整数时,分母自动为1。
并且ratio可以实现自动约分
举个例子:
#include <iostream>
#include <ratio>
using namespace std;
int main()
{
typedef ratio<25, 15> FiThree;
cout << FiThree::num << " " << FiThree::den << endl;
return 0;
}
输出:5 3
ratio都能达成哪些操作呢?
运算 | 意义 | 结果 | ratio_add | 和 | ratio<> | ratio_subtract | 差 | ratio<> | ratio_multiply | 积 | ratio<> | ratio_divide | 商 | ratio<> | ratio_equal | 是否相等== | true_type或false_type | ratio_not_equal | 是否不等!= | true_type或false_type | ratio_less | 是否小于< | true_type或false_type | ratio_less_equal | 是否小于等于≤ | true_type或false_type | ratio_greater | 是否大于> | true_type或false_type | ratio_greater_equal | 是否大于等于≥ | true_type或false_type |
举两个代表例子:
ratio_add的使用
#include <iostream>
#include <ratio>
using namespace std;
int main()
{
typedef ratio<25, 15> FiThree;
typedef ratio<50, 15> FiftyThree;
typedef ratio_add<FiThree, FiftyThree> test;//这样写我个人觉得比较清爽
//我也见过ratio_add里面套ratio的表达式的,我容易眼花缭乱,所以我就这样写啦
cout << test::num << " " << test::den << endl;
return 0;
}
输出:5 1
ratio_equal的使用
#include <iostream>
#include <ratio>
using namespace std;
int main()
{
typedef ratio<25, 15> FiThree;
typedef ratio<50, 15> FiftyThree;
bool ans = ratio_equal<FiThree, FiftyThree>::value;
cout << ans << endl;
// 或者使用下面这种写法,输出的结果是一样的
// cout << ratio_equal<FiThree, FiftyThree>::value << endl;
return 0;
}
输出:0
本文参考博客的链接:
C++(标准库):09---分数运算(ratio库)_董哥的黑板报-CSDN博客_c++分数库
|