友元函数的运算符重载operator+

源程序:

#include <iostream>
using namespace std;
class Sample
{
private:
int x;
public:
Sample() {}
Sample(int a)
{
x = a;
}
void disp()
{
cout << "x=" << x << endl;
}
friend Sample operator+(Sample& s1, Sample& s2);
};
Sample operator+(Sample& s1, Sample& s2)
{
return Sample(s1.x + s2.x);
}
void main()
{
Sample obj1(10);
Sample obj2(20);
Sample obj3;
obj3 = obj1 + obj2;
obj3.disp();
}

运行结果:

 

posted @ 2021-02-10 17:49  bobo哥  阅读(154)  评论(0编辑  收藏  举报