我已經使用好友函數重載了預增加運算符。在重載的朋友函數中,變量的值顯示正確。但是,顯示功能中沒有顯示該值,爲什麼?超載預增加運算符不顯示正確結果
#include <iostream>
using namespace std;
class Rectangle {
public:
int breadth;
public:
void read();
void display();
friend void operator ++(Rectangle r1);
};
void Rectangle::read()
{
cout << "Enter the breadth of the Rectangle: ";
cin >> breadth;
}
void operator++(Rectangle r1)
{
++r1.breadth;
cout<<r1.breadth<<endl; //correct result
}
void Rectangle::display()
{
cout<<breadth<<endl; // not showing pre-incremented value, why ???
}
int main()
{
cout<<"Unary Operator using Friend Function \n";
Rectangle r1;
r1.read();
++r1;
cout << "\n breadth of Rectangle after increment: ";
r1.display();
return 0;
}
什麼是「矩形r1」 - 基於您傳入的指針,引用或複製對象? – UKMonkey
因爲你的++運算符是一個非成員函數並增加了它自己的矩形副本。 – tambre
您應該將++運算符實現爲成員函數。 – tambre