私はクラスポインタ宣言を持っています:
MyClass* a;
破壊方法には次のものがあります。
if (a)
{
delete a;
a= NULL;
}
ポインター a を削除するときに問題が発生しました。
Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
問題の原因は何ですか?どうすれば解決できますか?