可能重複:
Is there any reason to check for a NULL pointer before deleting ?NULL指針,並刪除它
是否有這個代碼
Type * p = 0;
delete p;
p
的錯誤是這裏的空指針。在實施這個過程中是否會有任何問題。
可能重複:
Is there any reason to check for a NULL pointer before deleting ?NULL指針,並刪除它
是否有這個代碼
Type * p = 0;
delete p;
p
的錯誤是這裏的空指針。在實施這個過程中是否會有任何問題。
'delete'不是C的部分這是C++。標記「C」改爲「C++」 – phoxis