我已經看過很多其他處理重載*運算符的帖子,但我仍然無法看到問題。重載乘法運算符
#include <iostream>
#include <string>
#include <cmath>
using namespace std;
class Fraction{
private:
int num, den;
public:
void set(int n, int d);
void setNum(int newNum);
void setDen(int newDen);
Fraction add(Fraction other);
Fraction simplify();
Fraction(int new_Num = 0, int new_Den = 0){
num = new_Num;
den = new_Den;
};
void output(Fraction& f);
void cleanerFunction(Fraction& f);
int gcd();
Fraction reduce();
friend ostream& operator <<(ostream& os, Fraction& f);
friend istream& operator >>(istream& in, Fraction& f);
friend Fraction operator + (const Fraction&, const Fraction&);
friend inline Fraction operator - (const Fraction&, const Fraction&);
friend Fraction operator * (const Fraction&, const Fraction&);
friend Fraction operator/(const Fraction&, const Fraction&);
friend bool operator < (const Fraction&, const Fraction&);
friend bool operator <= (const Fraction&, const Fraction&);
friend bool operator > (const Fraction&, const Fraction&);
friend bool operator >= (const Fraction&, const Fraction&);
friend bool operator == (const Fraction&, const Fraction&);
};
int gcd(int x, int y);
Fraction reduce(Fraction f);
void reduce(Fraction& f);
Fraction operator + (const Fraction& f, const Fraction& r){
int temp_Num, temp_Den;
temp_Num = (f.num * r.den) + (f.den * r.num);
temp_Den = (f.den * r.den);
Fraction temp_Frac(temp_Num, temp_Den);
temp_Frac.cleanerFunction(temp_Frac);
return temp_Frac;
};
Fraction operator - (const Fraction& f, const Fraction& r){
int temp_Num, temp_Den;
temp_Num = (f.num * r.den) - (f.den * r.num);
temp_Den = (f.den * r.den);
Fraction temp_Frac(temp_Num, temp_Den);
temp_Frac.cleanerFunction(temp_Frac);
return temp_Frac;
};
Fraction operator * (const Fraction& f, const Fraction& r){
int temp_Num, temp_Den;
temp_Num = (f.num * r.num);
temp_Den = (f.den * r.den);
Fraction temp_Frac(temp_Num, temp_Den);
temp_Frac.cleanerFunction(temp_Frac);
return temp_Frac;
};
Fraction operator/(const Fraction& f, const Fraction& r){
int temp_Num, temp_Den;
temp_Num = (f.num * r.den);
temp_Den = (f.den * r.num);
Fraction temp_Frac(temp_Num, temp_Den);
return temp_Frac;
};
bool operator < (const Fraction& f, const Fraction& r){
return (f.num * r.den) < (r.num * f.den);
};
bool operator <= (const Fraction& f, const Fraction& r){
return (f.num * r.den) <= (r.num * f.den);
};
bool operator > (const Fraction& f, const Fraction& r){
return (f.num * r.den) > (r.num * f.den);
};
bool operator >= (const Fraction& f, const Fraction& r){
return (f.num * r.den) >= (r.num * f.den);
};
bool operator == (const Fraction& f, const Fraction& r){
return (f.num * r.den) == (r.num * f.den);
};
ostream& operator <<(ostream& os, Fraction& f)
{
f.output(f);
return os;
}
istream& operator >>(istream& in, Fraction& f)
{
char ch;
int temp_Num, temp_Den;
in >> temp_Num >> ch >> temp_Den;
f.set(temp_Num, temp_Den);
f.cleanerFunction(f);
return in;
}
int main()
{
cout <<"HELLO\n";
cout << "Testing declarations " << endl;
cout << "Fraction x, y(2), z(-5,-6), w(1,-3);" << endl;
Fraction x, y(2), z(-5,-6), w(1,-3);
cout << "z = " << z << ", y = " << y << ", z = " << z << ", w = " << w << endl;
cout << "Testing >> overloading: \nEnter a fraction in the format " << "integer _numerator/integer _denominator" << endl;
cin >> x;
cout << "You entered the equivalent of: " << x << endl;
//cout << z << " - (" << w << ") = " << z - w << endl;
cout << "Testing the constructor and normalization routines: " << endl;
y =Fraction(-128, -48);
cout << "y =Fraction(-128, -48) outputs as " << y << endl;
y =Fraction(-128, 48);
cout << "y =Fraction(-128, 48) outputs as " << y << endl;
y = Fraction(128,-48);
cout << "y = Fraction(128, -48) outputs as " << y << endl;
Fraction a(1,1);
cout << "Fraction a(1,1); a outputs as: " << a << endl;
Fraction ww = y*a;
cout << y << " * " << a << " = " << ww << endl;
w = Fraction(25,9);
z = Fraction(3,5);
cout << "Testing arithmetic and relational operator overloading" << endl;
//cout << w << " * " << z << " = " << w * z << endl;
//cout << w << " + " << z << " = " << w + z << endl;
//cout << w << " - " << z << " = " << w - z << endl;
//cout << w << "/" << z << " = " << w/z << endl;
cout << w << " < " << z << " = " << (w < z) << endl;
cout << w << " < " << w << " = " << (w < w) << endl;
cout << w << " <= " << z << " = " << (w <= z) << endl;
cout << w << " <= " << w << " = " << (w <= w) << endl;
cout << w << " > " << z << " = " << (w > z) << endl;
cout << w << " > " << w << " = " << (w > w) << endl;
cout << w << " >= " << z << " = " << (w >= z) << endl;
cout << w << " >= " << w << " = " << (w >= w) << endl;
w = Fraction(-21,9);
z = Fraction(3,5);
//cout << w << " * " << z << " = " << w * z << endl;
//cout << w << " + " << z << " = " << w + z << endl;
//cout << w << " - " << z << " = " << w - z << endl;
//cout << w << "/" << z << " = " << w/z << endl;
cout << w << " < " << z << " = " << (w < z) << endl;
cout << w << " < " << w << " = " << (w < w) << endl;
cout << w << " <= " << z << " = " << (w <= z) << endl;
cout << w << " <= " << w << " = " << (w <= w) << endl;
cout << w << " > " << z << " = " << (w > z) << endl;
cout << w << " > " << w << " = " << (w > w) << endl;
cout << w << " >= " << z << " = " << (w >= z) << endl;
cout << w << " >= " << w << " = " << (w >= w) << endl;
return 0;
return 0;
}
Fraction Fraction::add(Fraction other){
Fraction result;
result.num = num*other.den + other.num *den;
result.den = den*other.den;
return result;
}
Fraction Fraction::simplify(){
Fraction f1;
f1.num = 4; f1.den=5;
return f1;
}
int gcd(int x, int y){
if(y<0)
y =-y;
if(x % y == 0)
return y;
else
return gcd(y, x%y);
}
int Fraction::gcd(){
Fraction temp;
if(den<0)
den =-den;
if(num % den == 0)
return den;
else{
temp.num =den;
temp.den= num%den;
return temp.gcd();
}
}
void Fraction::set(int n, int d){
num = n;
den = d;
}
void Fraction::setNum(int newNum){
num = newNum;
}
void Fraction::setDen(int newDen){
den = newDen;
}
Fraction Fraction::reduce(){
Fraction temp;
temp.set(num,den);
int m = temp.gcd();
num /= m;
den /= m;
}
Fraction reduce(Fraction f){
int m = f.gcd();
}
void reduce(Fraction& f){
}
void Fraction::output(Fraction& f){
f.cleanerFunction(f);
cout << num << "/"<< den;
}
void Fraction::cleanerFunction(Fraction& f){
int temp_Num = num;
int temp_Den = den;
if ((temp_Num != 0) && (temp_Den == 0))
temp_Den = 1;
if ((temp_Num > 0) && (temp_Den < 0)){
temp_Den = abs(temp_Den);
temp_Num = -temp_Num;
};
if ((temp_Num < 0) && (temp_Den < 0)){
temp_Den = abs(temp_Den);
temp_Num = abs(temp_Num);
};
num = temp_Num;
den = temp_Den;
}
有相關的代碼,如果你需要更多,我可以發佈。代碼* cout < < w * z < < end1; *和Main()中的所有內容都不能修改,其他的都可以。
錯誤我得到的是 錯誤:無法綁定 '的std :: ostream的{又名性病:: basic_ostream}' 左值到 '的std :: basic_ostream & &'
在主註釋掉線()是我得到錯誤消息的行。所以我遇到了(+, - ,*,/)操作符的問題。我只想看看*,所以我可以回去並對其餘的應用相同的修復。
是什麼問題?你有錯誤信息嗎?錯誤的結果? 'cleanerFunction'的定義在哪裏? – user463035818
我會添加更多信息。目前在清潔功能方面沒有問題,因爲它在程序的許多其他部分都有效,但是我會添加所有內容。 – Juscallmesteve
_「,我仍然無法看到問題。」_我們也不能 - 你需要告訴我們問題是什麼? –