私は次の例を試しています:
class base // base class
{
public:
std::list<base*> values;
base(){}
void initialize(base *b) {
values.push_front(b);
}
virtual ~base()
{
values.clear();
cout<<"base called"<<endl;
}
};
class derived : public base // derived class
{
public:
~derived(){
cout<<"derived called"<<endl;
}
};
int main()
{
derived *d = new derived;
base *b = new base;
b->initialize(static_cast<base *>(d)); /* filling list */
delete b;
return 0;
}
Q.1) 実行している基本クラスのデストラクタのように、派生クラスのデストラクタが呼び出されないのはなぜvalues.clear()
ですか?
Q.2) 基本クラスのデストラクタが仮想の場合、派生クラスのデストラクタの定義は必要ですか?