編譯器警告 (層級 3, 關閉) C4265
'classname':類別有虛擬函式,但其非一般解構函式而無法虛擬; 此類別的執行個體可能無法正確解構
當某一個類別具有虛擬函式但具有非虛擬解構函式時,則在透過基底類別指標終結該類別時,該類型的物件可能無法正確被終結。
此警告預設為關閉。 如需詳細資訊,請參閱 Compiler Warnings That Are Off by Default。
下列範例會產生 C4265:
// C4265.cpp
// compile with: /W3 /c
#pragma warning(default : 4265)
class B
{
public:
virtual void vmf();
~B();
// try the following line instead
// virtual ~B();
}; // C4265
int main()
{
B b;
}