类的运算符、输入输出 -- 重载;虚函数

期末复习,做纪念

以复数类为例

#include<iostream>
using namespace std;

class Base{
public:
    virtual void display()=0;
};
class Complex:public Base{
private:
    double *real=new double;
    double *image=new double;
    int id=1;
public:
    Complex(){}
    Complex(double r,double i){
        *real=r;
        *image=i;
        cout<<"构造函数"<<endl;
    }
    Complex(Complex& c1){
        real=new double;
        image=new double;
        *real=*c1.real;
        *image=*c1.image;
    }
    Complex operator =(const Complex&c1);
    Complex operator +(const Complex&c1);
    Complex operator -(const Complex&c1);
    friend istream& operator >>(istream& input,const Complex&c1);
    friend ostream& operator <<(ostream& output,const Complex&c1);
    Complex& operator ++();
    Complex  operator ++(int );
    friend Complex& operator --(Complex& c1);
    friend Complex  operator --(Complex& c1,int );
    void display(){
        cout<<id<<" ** "<<endl;
    }
    
    ~Complex(){
        delete real;
        delete image;
        cout<<"destruct"<<endl;
    }
};
class son:public Complex{
private:
    int id=2;
public:
    void display(){
        cout<<id<<" *** "<<endl;
    }
};


Complex Complex:: operator =(const Complex&c1){
    *real=*c1.real;
    *image=*c1.image;
    return *this;
}
Complex Complex:: operator +(const Complex&c1){
    Complex temp(0,0);
    *temp.real=*real+*c1.real;
    *temp.image=*image+*c1.image;
    return temp;
}
Complex Complex:: operator -(const Complex&c1){
    Complex temp(0,0);
    *temp.real=*real-*c1.real;
    *temp.image=*image-*c1.image;
    return temp;
}
istream& operator >>(istream& input,const Complex&c1){
    input>>*c1.real;input>>*c1.image;
    return input;
}
ostream& operator <<(ostream& output,const Complex&c1){
    output<<"("<<*c1.real<<","<<*c1.image<<")"<<endl;
    return output;
}
Complex& Complex:: operator ++(){
    (*real)++;
    return *this;
}
Complex Complex:: operator ++(int ){
    Complex c1(*this);
    (*real)++;
    return c1;
}
Complex& operator --(Complex& c1){
    (c1.real)--;
    return c1;
}
Complex  operator --(Complex& c1,int ){
    Complex c2(c1);
    (c1.real)--;
    return c2;
}

int main(){
    Complex c1(1,1);
    Complex c2(2,2);
    cout<<c1+c2;
    cout<<c1;
    
    Base *a=new Complex(1,1);
    a->display();
    a=new son;
    a->display();
    return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值