I was wondering if there is a possibility to catch errors like this in C++:
object* p = new object;
delete p;
delete p; //this would cause an error, can I catch this?
- Can I check if the pointer is valid?
- Can I catch some exception?
I know I could set the pointer p to NULL after the first object deletion. But just imagine you wouldn't do that.
I am using VC++ with Visual Studio 2008/2010.
Thank you
if (p != NULL) delete p;– Jamie Wong Jun 18 '10 at 7:40delete p;whenp == NULLis allowed. – Job Jun 18 '10 at 7:49NULL. Why is a pointer in scope that's not referring to something?) C++ comes with many constructs that prevent you from manually managing pointers (and other resources). In the last decade of doing C++, I rarely ever had to manuallydeleteanything. – sbi Jun 18 '10 at 7:59