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.

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved