devxlogo

New Versus Malloc()

New Versus Malloc()

Question:
Why is it necessary to typecast the return value of malloc() but not for the new operator?

This question has been asked of many C++ experts but no one has given me a convincing answer.

Answer:
Unlike malloc(), operator new is aware of the type of the object it allocates because it needs to invoke the class’ constructor before returning the allocated object’s address. Since new is aware of the actual type of object being allocated, it automatically casts the returned pointer to the desired type for you.

By contrast, malloc() doesn’t know which type of object it allocates. Therefore, when using malloc(), you need to specify the size of the object explicitly, as well as cast the returned pointer to the desired type.

This is a fertile source of errors; therefore, it’s best to avoid using malloc() in C++ altogether.

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