1
我正在使用GNU編譯器。類B中的虛擬析構函數不調用Destructor〜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
刪除應調用類B中的虛擬析構函數,但它不。
delete p;
}
'cout <「1000 ints deleted \ n」;'你在那裏得到一個錯字 – Borgleader
這應該工作(如果它編譯,你有一個微不足道的語法錯誤)。你有什麼證據證明它沒有? – juanchopanza
謝謝你們。 –