国庆10.3

C++运算符重载实现过程

#include <iostream>

using namespace std;

//定义一个复数类
class Complex
{
private:
    int real;       //实部
    int vir;        //虚部
public:
    Complex() {}
    Complex(int r, int v):real(r), vir(v) {}

    void show()
    {
        if(vir >= 0)
        {
            cout<<real<<" + "<<vir<<"i"<<endl;
        }else
        {
            cout<<real<<vir<<"i"<<endl;
        }
    }

    //全局函数版实现加号运算符重载:实部+实部 虚部+虚部
    friend const Complex operator- (const Complex &L, const Complex &R);

    //成员函数实现加运算符的重载
    const Complex operator+ (const Complex &R)const
    {
        Complex c;
        c.real = this->real + R.real;
        c.vir = this->vir + R.vir;

        return c;
    }

    //成员函数版实现关系运算符的重载:实部>实部 虚部>虚部
    bool operator> (const Complex &R)const
    {
        return this->real>R.real&&this->vir>R.vir;
    }

    //重载中括号运算符
    int & operator[](int index)
    {
        if(index == 0)
        {
            return real;        //返回实部
        }else if(index == 1)
        {
            return vir;         //返回虚部
        }
    }

    //重载 +=运算符:实部+=实部 虚部+=虚部
    Complex &operator+=(const Complex &R)
    {
        this->real += R.real;
        this->vir += R.vir;

        return  *this;              //返回自身的引用
    }

    //重载负号运算符:实部= -实部,虚部= -虚部
    Complex operator-()
    {
        Complex c;
        c.real = this->real;
        c.vir = this->vir;

        return c;
    }

    //重载前置自增运算符重载函数:实部=实部+1 虚部=虚部+1
    Complex &operator++()
    {
        ++this->real;   //等同于this->real++
        ++this->vir;

        return *this;    //先加一再使用
    }

    //重载后置自增运算符重载函数:实部=实部+1 虚部=虚部+1
    Complex operator++(int)
    {
        Complex c;
        c.real = this->real++;
        c.vir = this->vir++;

        return  c;
    }

    //将全局版的重载输出运算符函数设置成友元
    friend ostream &operator<<(ostream &L, Complex &c);

    //重载小括号运算符,做一个仿函数
    void operator()(string s)
    {
        cout<<s<<endl;
    }

    //重载小括号运算符,做一个仿函数
    void operator()()
    {
        cout<<111<<" "<<222<<endl;
    }

    //重写类型转换运算符
    operator int()
    {
        return 44;  //也可以return real
    }
};

//全局函数版实现加号运算符重载:实部+实部 虚部+虚部
const Complex operator- (const Complex &L, const Complex &R)
{
    //定义一个临时空间
    Complex c;
    c.real = L.real - R.real;
    c.vir = L.vir - R.vir;

    return c;
}

//重载输出运算符函数
ostream &operator<<(ostream &L, Complex &c)
{
    if(c.vir >= 0)
    {
        L<<c.real<<" + "<<c.vir<<"i"<<endl;
    }else
    {
        L<<c.real<<c.vir<<"i"<<endl;
    }

    //返回左操作数自身的引用
    return L;
}

int main()
{
    Complex c1(5, 3);
    c1.show();              //5+3i

    Complex c2(2, -1);
    c2.show();              //2-1i

    Complex c3 = c1-c2;     //调用加法运算函数

    c3.show();              //3+4i

    if(c3 > c2)             //调用关系运算符重载函数
    {
        cout<<"yes"<<endl;
    }else
    {
        cout<<"no"<<endl;
    }

    c3[0] = 5;          //将实部进行修改成5, 调用中括号运算符重载
    c3.show();          //5+4i

    c3 += c2;           //调用+=运算符重载函数
    c3.show();          //7+3i

    Complex c4 = -c3;
    c4.show();
    c3.show();

    Complex c5 = ++c3;      //调用前置自增运算符重载函数
    c5.show();              //8+4i
    c3.show();              //8+4i

    Complex c6 = c3++;      //调用后置自增运算符重载函数
    c6.show();              //原值 8+4i
    c3.show();              //自增 9+5i

    cout<<c3;               //cout.opertaor<<(c3)

    c3("hello world");      //c3.operator()("hello world");
    c3();

    int num = (int)c3;
    cout<<"num = "<<num<<endl;      //调用类型转换运算符函数

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值