析构函数
1.什么是析构函数
析构函数于构造函数相对应,构造函数是对象创建的时候自动调用的,而析构函数就是对象在销毁的时候自动调用的的
特点:
1)构造函数可以有多个来构成重载,但析构函数只能有一个,不能构成重载
2)构造函数可以有参数,但析构函数不能有参数
3)与构造函数相同的是,如果我们没有显式的写出析构函数,那么编译器也会自动的给我们加上一个析构函数,什么都不做;如果我们显式的写了析构函数,那么将会覆盖默认的析构函数
4)在主函数中,析构函数的执行在return语句之前,这也说明主函数结束的标志是return,return执行完后主函数也就执行完了,就算return后面还有其他的语句,也不会执行的
#include <iOStream>
#include <string>
using namespace std;
class Cperson
{
public:
Cperson()
{
cout << "beginning" << endl;
}
~Cperson()
{
cout << "End" << endl;
}
};
int main()
{
Cperson op1;
system("pause");
return 0;
}
执行结果:
从这里也可以发现,此时析构函数并没有被执行,它在system之后,return之前执行
2.指针对象执行析构函数
与栈区普通对象不同,堆区指针对象并不会自己主动执行析构函数,就算运行到主函数结束,指针对象的析构函数也不会被执行,只有使用delete才会触发析构函数
#include <iostream>
#include <string>
using namespace std;
class Cperson
{
public:
Cperson()
{
cout << "Beginning" << endl;
}
~Cperson()
{
cout << "End" << endl;
}
};
int main()
{
Cperson *op2 = new Cperson;
delete(op2);
system("pause");
return 0;
}
执行结果:
在这里可以发现,已经出现了End,说明析构函数已经被执行,也就说明了delete触发了析构函数
3.临时对象
格式:类名();
作用域只有这一条语句,相当于只执行了一个构造函数和一个析构函数
除了临时对象,也有临时变量,例如语句int(12);就是一个临时变量,当这句语句执行完了,变量也就释放了,对外部没有任何影响,我们可以通过一个变量来接受这一个临时的变量,例如:int a=int(12);这与int a=12;不同,后者是直接将一个整型数值赋给变量a,而前者是先创建一个临时的变量,然后再将这个变量赋给变量a
#include <iostream>
#include <string>
using namespace std;
class Cperson
{
public:
Cperson()
{
cout << "Beginning" << endl;
}
~Cperson()
{
cout << "End" << endl;
}
};
int main()
{
Cperson();
system("pause");
return 0;
}
执行结果:
4.析构函数的作用
当我们在类中声明了一些指针变量时,我们一般就在析构函数中进行释放空间,因为系统并不会释放指针变量指向的空间,我们需要自己来delete,而一般这个delete就放在析构函数里面
#include <iostream>
#include <string>
using namespace std;
class Cperson
{
public:
Cperson()
{
pp = new int;
cout << "Beginning" << endl;
}
~Cperson()
{
delete pp;
cout << "End" << endl;
}
private:
int *pp;
};
int main()
{
Cperson();
system("pause");
return 0;
}
5.malloc、free和new、delete的区别
malloc不会触发构造函数,但new可以
free不会触发析构函数,但delete可以
#include <iostream>
#include <string>
using namespace std;
class Cperson
{
public:
Cperson()
{
pp = new int;
cout << "Beginning" << endl;
}
~Cperson()
{
delete pp;
cout << "End" << endl;
}
private:
int *pp;
};
int main()
{
Cperson *op1 = (Cperson *)malloc(sizeof(Cperson));
free(op1);
Cperson *op2 = new Cperson;
delete op2;
system("pause");
return 0;
}
执行结果:
从结果上来看,只得到了一组Beginning、End说明只有一组触发了构造函数和析构函数,这一组就是new和delete
相关阅读
相信学习c++的很多同志都听过这样的建议:最好将类的析构函数写成虚函数,如下:class B { public: B() { printf("B()\n"); }
乍一看,java里面怎么还有这样的词语。其实:析构函数(destructor) 与 构造函数 相反,当对象结束其 生命周期时(例如对象所在的函数
通过C++ Primer重新回顾构造函数和析构函数,发现真的好多都忘了… 构造函数 类的构造函数是类的一种特殊的成员函数,它会在每次