• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++什么时候调用析构函数

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

析构函数是在对象消亡时,自动被调用,用来释放对象占用的空间。

有四种方式会调用析构函数:

1.生命周期:对象生命周期结束,会调用析构函数。

2.delete:调用delete,会删除指针类对象。

3.包含关系:对象Dog是对象Person的成员,Person的析构函数被调用时,对象Dog的析构函数也被调用。

4.继承关系:当Person是Student的父类,调用Student的析构函数,会调用Person的析构函数。

 

第一种 生命周期结束

#include <iostream>
using namespace std;
class Person{
public:
    Person(){
        cout << "Person的构造函数" << endl;
    }
    ~Person()    {
        cout << "删除Person对象 " << endl;
    }
private:
    int name;
};

int main() {
    Person person;
    return 0;
}

结果

Person的构造函数
删除Person对象

 

第二种 delete

对于new的对象,是指针,其分配空间是在堆上,故而需要用户删除申请空间,否则就是在程序结束时执行析构函数

#include <iostream>
using namespace std;
class Person{
public:
    Person(){
        cout << "Person的构造函数" << endl;
    }
    ~Person()    {
        cout << "删除Person对象 " << endl;
    }
private:
    int name;
};

int main() {
    Person *person=new  Person();
    delete person;
    return 0;
}

结果

Person的构造函数
删除Person对象

第三种 包含关系

#include <iostream>
using namespace std;
class Dog{
public:
    Dog(){
        cout << "Dog的构造函数" << endl;
    }
    ~Dog()    {
        cout << "删除Dog对象 " << endl;
    }
private:
    int name;
};
class Person{
public:
    Person(){
        cout << "Person的构造函数" << endl;
    }
    ~Person()    {
        cout << "删除Person对象 " << endl;
    }
private:
    int name;
    Dog dog;
};


int main() {
    Person person;
    return 0;
}

结果

Dog的构造函数
Person的构造函数
删除Person对象
删除Dog对象

 

第四种 继承关系

#include <iostream>
using namespace std;

class Person{
public:
    Person(){
        cout << "Person的构造函数" << endl;
    }
    ~Person()    {
        cout << "删除Person对象 " << endl;
    }
private:
    int name;

};
class Student:public Person{
public:
    Student(){
        cout << "Student的构造函数" << endl;
    }
    ~Student()    {
        cout << "删除Student对象 " << endl;
    }
private:
    int name;
    string no;
};

int main() {
    Student student;
    return 0;
}

结果

Person的构造函数
Student的构造函数
删除Student对象
删除Person对象

 

参考:https://blog.csdn.net/chen134225/article/details/81221382

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++构造函数深度探究发布时间:2022-07-13
下一篇:
用c#语言编写分解质因数发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap