devxlogo

I get a runtime error when I use the array delete operator

I get a runtime error when I use the array delete operator

Question:
This is legal (safe) and works with the compilerenvironment I am using:

 CMyObject *ptr = NULL;  delete ptr;
However, I get a run-time error (assert) whenI use the array delete operator:
long *array = NULL;  delete [] array;
Is the environment right or is it legal C++ to use array delete on a NULL pointer?

Answer:
It is perfectly legal and safe to use delete or delete [] on null pointers. When called with a zero argument the operation has no effect.

See also  The Importance of Red Teaming in Modern Cyber Defense Strategies
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist