【发布时间】:2018-08-01 12:55:08
【问题描述】:
我正在学习的课程说返回此对象引用(使用 *this)主要用于链接等号(例如:b = d = c = a)但是,当我重载时,我无法理解这个返回是如何工作的'=' 运算符。 如果我不打算使用任何类型的链条,也有必要吗?这个返回语句是如何工作的?非常感谢。
class Rational {
int _n = 0; // '_n' stands for numerator
int _d = 1; // '_d' stands for denominator
public:
Rational (int numerator = 0, int denominator = 1) : _n(numerator), _d(denominator) {};
Rational (const Rational & rhs) : _n(rhs._n), _d(rhs._dd) {};
~Rational ();
int numerator() const { retrun _n; };
int denominator() const { return _d; };
Rational & operator = (const Rational &);
Rational operator + (const Rational &) const;
Rational operator - (const Rational &) const;
Rational operator * (const Rational &) const;
Rational operator / (const Rational &) const;
};
Rational & Rational::operator = (const Rational & rhs) {
if(this != &rhs){
_n = rhs.numerator();
_d = rhs.denominator();
}
return *this;
}
Rational Rational::operator + (const Rational & rhs) const {
return Rational((_n * rhs._d) + (_d * rhs._n), (_d * rhs._d));
}
Rational Rational::operator - (const Rational & rhs) const {
return Rational((_n * rhs._d) + (_d * rhs._n), (_d * rhs._d));
}
Rational Rational::operator * (const Rational & rhs) const {
return Rational((_n * rhs._n), (_d * rhs._d));
}
Rational Rational::operator / (const Rational & rhs) const {
return Rational((_n * rhs._d), (_d * rhs._n));
}
Rational::~Rational(){
print("dtor: %d/%d\n", this->_n, this->_d);
_n = 0; _d = 1;
}
std::ostream & operator << (std::ostream & o, const Rational & r){
return o << r.numerator() << "/" << r.denominator();
}
int main(int argc, char** argv){
Rational a = 7; // 7/1
cout << "a is: " << a << endl;
Rational b(5, 3); // 5/3
cout << "b is: " << b << endl;
Rational c = b; // Copy constructor
cout << "c is: " << c << endl;
Rational d; // Default constructor
cout << "d is: " << d << endl;
d = c; // Assignment constructor
cout << "d is: " << d << endl;
Rational & e = d; // Reference
d = e; // Assignment to self!
cout << "e is: " << e << endl;
cout << a << " + " << b << " = " << a + b << endl;
cout << a << " - " << b << " = " << a - b << endl;
cout << a << " * " << b << " = " << a * b << endl;
cout << a << " / " << b << " = " << a / b << endl;
return 0;
}
【问题讨论】:
-
对`多次感到抱歉。我是 Stack Over Flow 的新手。
-
没必要。这样做在语言中是惯用的,但不这样做(例如,将返回类型改为
void)会导致编译器在使用a = b = c时发出错误。
标签: c++ computer-science