我想用lcm的分子和分母计算两个分数的总和。这意味着我希望得到一个简化形式的分数。我有以下cpp文件。
#include <iostream> //need it for cin and cout
#include "fraction.h"
Fraction::Fraction()
{
num = 1;
den = 1;
}
Fraction::Fraction(int n, int d)
{
int tmp_gcd = gcd(n, d);
num = n / tmp_gcd;
den = d / tmp_gcd;
}
int Fraction::gcd(int a, int b)
{
int tmp_gcd = 1;
// Implement GCD of two numbers;
return tmp_gcd;
}
int Fraction::lcm(int a, int b)
{
return a * b / gcd(a, b);
}
Fraction operator+(const Fraction&a,const Fraction &b)
{
int c=(lcm(b.den,a.den)/b.den)*a.num+b.num*(lcm(b.den,a.den)/a.den);
int d=lcm(b.den,a.den);
Fraction result(c,d);
return result;
}
但是此代码不起作用,因为在此范围内未定义lcm。
允许lcm在此范围内工作的关键是什么?如果你能解释得更多,我会非常感激。
答案 0 :(得分:2)
lcm
是Fraction
的成员。您可以在lcm
成员中Fraction
引用它;但operator+
不是会员,因此您必须使用限定名称Fraction::lcm
。
它还需要static
。 (希望它已经存在,但我无法确定声明)。