Possible Duplicate:
Is it worth setting pointers to NULL in a destructor?
Is it pointless to set a pointer (which allocates heap memory) to NULL
in the destructor?
class SampleClass
{
public:
SampleClass( int Init = 0 )
{
Value = new int( Init );
}
~SampleClass( void )
{
delete Value;
Value = NULL; // Is this pointless?
}
int *Value;
};
While on the subject of classes, when should I use the explicit
keyword?
It is better to set the pointer to NULL.
If somewhere else in the code you delete the SampleClass instance and then access the Value (using another pointer to the same instance), you will know something went wrong because the program will crash on NULL dereference (so you will know you are accessing deleted object).
Otherwise you could keep using the deleted object and notice the bug only much later (when the memory is overwritten by another object). Such issues are often extremely difficult to debug.