GNU コンパイラを使用しています。クラス B の仮想デストラクタは、デストラクタ ~D() を呼び出しません。誰か教えてくれませんか?
#include<iostream>
using namespace std;
class B {
double* pd;
public:
B() {
pd=new double [20];
cout<< "20 doubles allocated\n";
}
virtual ~B() { //the virtual destructor is not calling ~D()
delete[] pd;
cout<<"20 doubles deleted\n";
}
};
class D: public B {
int* pi;
public:
D():B() {
pi= new int [1000];
cout<< "1000 ints allocated\n";
}
~D() {
delete[] pi;
cout< "1000 ints deleted\n";
}
};
int main() {
B* p= new D; //new constructs a D object
Delete はクラス B で仮想デストラクタを呼び出す必要がありますが、そうではありません。
delete p;
}