Is it safe to delete a NULL pointer?
And is it a good coding style?
|
|
|
I'd also love if
(I know about R and L values, but wouldn't it be nice?) |
|||||||||||||||||||
|
|
Yes it is safe. There's no harm in deleting a null pointer; it often reduces the number of tests at the tail of a function if the unallocated pointers are initialized to zero and then simply deleted. |
|||
|
|
|
Deleting a null pointer has no effect. It's not good coding style necessarily because it's not needed, but it's not bad either. If you are searching for good coding practices consider using smart pointers instead so then you don't need to |
|||||||
|
|
Good practice is to write C++ programs without a single call to That is, use |
|||
|
|
|
From the C++0x draft Standard.
Of course, no one would ever do 'delete' of a pointer with NULL value, but it is safe to do. Ideally one should not have code that does deletion of a NULL pointer. But it is sometimes useful when deletion of pointers (e.g. in a container) happens in a loop. Since delete of a NULL pointer value is safe, one can really write the deletion logic without explicit checks for NULL operand to delete. As an aside, C Standard $7.20.3.2 also says that 'free' on a NULL pointer does no action.
|
||||
|
|