C++:操作符重载

操作符重载很早前就学过,现在重温下,又有更深一层的体会。新建控制台程序,代码如下:

#include <iostream>

using namespace std;
class Complex
{
public:
    Complex(double r = 0, double i = 0) : _real(r), _imag(i) { }

    double GetReal() { return _real; }
    double GetImag() { return _imag; }

    Complex operator + (Complex&);              //函数返回的是一个类,形参(相加的对象)也是一个类
    Complex operator - (Complex&);
    Complex operator + (double);                   //函数返回的是一个类,形参(相加的对象)是一个double数值
    Complex operator - (double);

private:
    double _real, _imag;
};

Complex Complex::operator + (Complex& c)
{
    Complex tmp;
    tmp._real = _real + c._real;
    tmp._imag = _imag + c._imag;
    return tmp;
}

Complex Complex::operator - (Complex& c)
{
    Complex tmp;
    tmp._real = _real - c._real;
    tmp._imag = _imag - c._imag;
    return tmp;
}

Complex Complex::operator + (double d)
{
    Complex tmp;
    tmp._real = _real + d;
    tmp._imag = _imag;
    return tmp;
}

Complex Complex::operator - (double d)
{
    Complex tmp;
    tmp._real = _real - d;
    tmp._imag = _imag;
    return tmp;
}

int main()
{
    Complex c1(3.59, 15.6), c2(32.1, -15.8), c3, c4;
    c3 = c1 + c2;
    c4 = c3 - 10.5;
    cout << c3.GetReal() << ", " << c3.GetImag() << '\t' << c4.GetReal() << ", " << c4.GetImag() << endl;
    return 0;
}

重点说明:(截图来自 Visual C++范例大全.pdf)


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

宏笋

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值