#include<iostream>
using namespace std;
//析构函数是否需要定义成虚函数
class Person { public: ~Person() { cout << "~Person()" << endl; } };
class Student:public Person { public: ~Student() { cout << "~Student() " << endl; } };
int main()
{
Person* p1 = new Person;
delete p1;
Person* p2 = new Student;
delete p1;
return 0;
}
如果student析构函数中有资源释放,这里没有调用到,就会发生内存泄漏。
不够成多态:
调用的指针类型是谁就调用谁的析构函数。
#include<iostream>
using namespace std;
//析构函数是否需要定义成虚函数
class Person { public: virtual ~Person() { cout << "~Person()" << endl; } };
class Student:public Person { public: ~Student() { cout << "~Student() " << endl; } };
int main()
{
Person* p1 = new Person;
delete p1;
Person* p2 = new Student;
delete p2;
return 0;
}
构成多态:
调用的指针指向谁就调用谁的析构函数。
析构函数的函数名会被处理为destructor。
p是一个子类的指针。
调用test()时,A* this 指向 p
后调用子类的func void func(int val = 1)会继承父类的,然后将函数体重写
故答案为: B->1。
c++11中
final关键字
父类经过final关键字修饰后,相当于将父类的构造函数私有化
子类不能继承也不能重写父类的虚函数。
override关键字
override关键字可以作为一道闸口去检查子类是否正确的重写了父类的虚函数。