Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

new, delete ,malloc & free

This question was asked to me in an interview:

In C++,

  1. what if we allocate memory using malloc and use delete to free that allocated memory?
  2. what if we allocate the memory using new and free it using free?

What are the problems that we would face if the above things are used in the code?

My answer was there is no difference. Was I right in saying so?

like image 488
Vijay Avatar asked Jul 06 '10 06:07

Vijay


1 Answers

If you do so you will run into undefined behavior. Never try that. Although new might be implemented through malloc() and delete might be implemented through free() there's no guarantee that they are really implemented that way and also the user can overload new and delete at his discretion. You risk running into heap corruption.

Other than that don't forget that when you call malloc() you get raw memory - no constructor is invoked - and when you call free() no destructor is invoked. This can as well lead to undefined behavior and improper functioning of the program.

The bottom line is... never do this.

like image 151
sharptooth Avatar answered Oct 01 '22 09:10

sharptooth