[Error] no matching function for call to 'fraction::add(fraction&, fraction&)'
line 105 which is
f3.add( f1, f2);
这是我在尝试编译时收到的错误消息。
实例: 我正在尝试创建一个'fraction'类,它允许我的教师预先设置int main()来执行。到目前为止,我构建了一个简单的类,我正在尝试编译以查看它是否有效。
'My class:
class fraction
{
private:
long num, den;
public:
void setNum(long i_num)
{
num=i_num;
}
void setDen(long)
{
}
long getNum()
{
return num;
}
long getDen()
{
return den;
}
fraction()
{
num = 1;
den = 1;
}
fraction(int n, int d)
{
num = n;
if (d==0)
{
cout << "Cannot divide by zero" << endl;
exit(0); // will terminate the program if division by 0 is attempted
}
else
den = d;
}
fraction add(fraction otherFraction)
{
int n = num*otherFraction.den+otherFraction.num*den;
int d = den*otherFraction.den;
return fraction(n/gcd(n,d),d/gcd(n,d));
}
fraction sub(fraction otherFraction)
{
int n = num*otherFraction.den-otherFraction.num*den;
int d = den*otherFraction.den;
return fraction(n/gcd(n,d),d/gcd(n,d));
}
fraction mult(fraction otherFraction)
{
int n = num*otherFraction.num;
int d = den*otherFraction.den;
return fraction(n/gcd(n,d),d/gcd(n,d));
}
fraction div(fraction otherFraction)
{
int n = num*otherFraction.den;
int d = den*otherFraction.num;
return fraction(n/gcd(n,d),d/gcd(n,d));
}
int gcd(int n, int d)
{
int remainder;
while (d != 0)
{
remainder = n % d;
n = d;
d = remainder;
}
return n;
}
void print() // Display method
{
if (den == 1) // e.g. fraction 2/1 will display simply as 2
cout << num << endl;
else
cout << num << "/" << den << endl;
}
};'
我的教练是int main():
int main ( )
{ // define seven instances of the class fraction
fraction f1, f2, f3, f4, f5, f6, f7;
//set values for the numerator and denominator to f1 and print
//them
f1.setDen( 2L);
f1.setNum( 0L);
f1.print();
//set values for the numerator and denominator to f2 and print them
f2.setDen( 4L);
f2.setNum( 3L);
f2.print();
f3.add( f1, f2);
f3.print();
f4.sub( f1, f2);
f4.print();
f5.mult( f1, f2);
f5.print();
f6.div( f1, f2);
f6.print();
f7.inc(f1);
f7.print(f1);
我的导师告诉我们不要以任何方式编辑main()。
我已将其追溯到类
中的方法 fraction add(fraction otherFraction)
{
int n = num*otherFraction.den+otherFraction.num*den;
int d = den*otherFraction.den;
return fraction(n/gcd(n,d),d/gcd(n,d));
}
如何在main()中传递变量,以便它们在类中工作? 我只学过一种做事方式,这是我的第一个面向对象的课程。他正在教授不同的组织方式,而我却不了解它。他还没有给我发电子邮件给我大约一个星期(在线课程)。
任何提示/提示都将非常感激。 谢谢。
答案 0 :(得分:4)
从报告的错误中可以看出,编译器会查找具有以下签名的方法:
fraction::add(fraction&, fraction&)
虽然您定义的方法具有以下方法:
fraction::add(fraction&)
所以,你错过了一个参数(另一个部分)。 我不太确定&#39;添加&#39;方法(教师调用它的方式)但我认为将两个分数之和的结果分配给你调用对象的那个,即f3 = f1 + f2。在这种情况下,您应该实现如下添加:
void add(const fraction& a,const fraction& b)
{
int n = a.getNum()*b.getDen()+b.getNum()*a.getDen();
int d = a.getDen()*b.getDen();
num = n/gcd(n,d);
dem = d/gcd(n,d);
}
或多或少......:)
PS:我添加了一些&#39; const francion&amp;&#39;这是一个优化,以避免每次调用函数时复制参数。它并非绝对必要,但它是一种非常好的编程习惯..;)答案 1 :(得分:1)
比较你的功能原型:
fraction add(fraction otherFraction)
以main
调用它的方式:
f3.add( f1, f2);
你看到不匹配了吗?你的函数有一个参数,但main()
用两个参数调用它。您需要在函数中添加一个额外的参数。
我认为f3.add(f1, f2)
的预期语义是f3 = f1 + f2
。
答案 2 :(得分:-3)
add()
是一个成员函数,它接受一个fraction
参数。但是,由于它是在fraction
的实例上调用的,因此您将添加两个对象otherFraction
和*this
。 *this
是调用add()
的对象的实例,otherFraction
是传递给add()
的参数:
f1.add(f2);
^ ^
| |
---- -------------
*this otherFraction
您需要做的就是将结果分配给f3
:
f3 = f1.add(f2);