C++ 纯虚函数和抽象类

纯虚函数

定义:virtual 函数返回值类型 函数名() = 0;

抽象类

类中有纯虚函数的类称为抽象类;抽象类无法实例化对象;抽象类的子类必须重写父类中的纯虚函数;

纯虚函数从定义的角度看,其实就是在虚函数的基础上去掉大括号,变为=0即可;

纯虚函数和抽象类代码解释如下:

#include<iostream>
using namespace std;

class Persion {//抽象类


public:

    virtual void speek() = 0;//纯虚函数
};

class Teacher:public Persion {

public:
    virtual void speek() {//Persion子类强制实现父类总的纯虚函数(Java中称为抽象函数)
        cout << "老师会说话" << endl;

    }
};

int main() {

    //Persion p;//类中有纯虚函数的类为抽象类 ,不能直接实例化为对象
    Teacher t = Teacher();
    t.speek();
    return 0;
}

虚析构和纯虚析构

虚析构不是不必须,只有当子类有成员存储开辟在堆区存储时,需要父类添加虚析构,这样当子类被回收时子类的析构函数才会调用;

虚析构代码解释如下:

#include<iostream>
using namespace std;

class Animal{

public:
    Animal() {
        cout << "Animal构造调用" << endl;
    }

    virtual void eat() {
        cout << "动物会吃" << endl;
    }

    virtual ~Animal(){//虚析构,如果父类不添加虚析构,子类的析构函数不调用
        cout << "Animal析构调用" << endl;
    }
};

class Dog :public Animal {
public:
    Dog(string name) {
        cout << "Dog构造调用" << endl;
        this->name = new string(name);
    }
    void eat() {
        cout << "小狗吃骨头" << endl;
    }

    ~Dog() {//父类如果不添加虚析构,此析构编译器不调用
        if (name != NULL) {
            delete name;
            name = NULL;
        }
        cout << "Dog析构调用" << endl;
    }
     
    string * name;
};

int main() {
    
    Animal* d2 = new Dog("藏獒");
    d2->eat();
    delete d2;

    return 0;
}

纯虚析构需要声明也需要实现;声明了纯虚析构函数的类也是抽象类;

纯虚析构代码声明

virtual ~类名() = 0;//纯虚析构的声明

纯虚析构的代码阐述:

#include<iostream>
using namespace std;

class Animal{

public:
    Animal() {
        cout << "Animal构造调用" << endl;
    }

    virtual void eat() {
        cout << "动物会吃" << endl;
    }


    //virtual ~Animal(){//虚析构,如果父类不添加虚析构,子类的析构函数不调用
    //    cout << "Animal虚析构调用" << endl;
    //}

    virtual ~Animal() = 0;//纯虚析构
};

Animal:: ~Animal() {//纯虚析构类外实现
    cout << "Animal纯虚析构调用" << endl;
}

class Dog :public Animal {
public:
    Dog(string name) {
        cout << "Dog构造调用" << endl;
        this->name = new string(name);
    }
    void eat() {
        cout << "小狗吃骨头" << endl;
    }

    ~Dog() {
        if (name != NULL) {
            delete name;
            name = NULL;
        }
        cout << "Dog析构调用" << endl;
    }
     
    string * name;
};



int main() {
    
    Animal* d2 = new Dog("藏獒");
    d2->eat();
    delete d2;

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

Ang_qq_252390816

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

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

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

打赏作者

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

抵扣说明:

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

余额充值