Shall we use 'free' to free memory assigned by new, What are
the further consequences??

Answers were Sorted based on User's Feedback



Shall we use 'free' to free memory assigned by new, What are the further consequences??..

Answer / aruna kumar samal

yes you can use free to free memory assignrd by new but it
wo not call the destructor.

Is This Answer Correct ?    6 Yes 0 No

Shall we use 'free' to free memory assigned by new, What are the further consequences??..

Answer / uma sankar pradhan

No,we shouldnot use 'free' to free memory assigned by new.
It causes memory leak and sometimes hanging of the system

Is This Answer Correct ?    3 Yes 0 No

Shall we use 'free' to free memory assigned by new, What are the further consequences??..

Answer / nishikant sahu

Yes you can but not recommend, b'c some time when you class
hold the heap memory it can't be free by "Free" b'c of no
constructor call happening via "Free" and you get the memory
leak. so use New/ delete or malloc/free pair.

Is This Answer Correct ?    3 Yes 1 No

Shall we use 'free' to free memory assigned by new, What are the further consequences??..

Answer / guest

Yes we can use free which was assigned by new.but in this
case no destrctor will be called as free doesn't call this.
So it is recommended that we should not use free if we
allcoate the memory using new.

Is This Answer Correct ?    2 Yes 0 No

Shall we use 'free' to free memory assigned by new, What are the further consequences??..

Answer / krishnarao panchadi

Syntactically we can use "free" in place of "delete". But
semantically it is senseless as it wont call the destructor.

Note that, deallocating is not the only purpose of
using "delete". The destructor should also be called if you
call the constructor(while creating the object).
Failing to call "delete" may lead to system crash.

Using "free" wont call the desturctor.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C++ General Interview Questions

What can I safely assume about the initial values of variables which are not explicitly initialized?

0 Answers  


Is oops and c++ same?

0 Answers  


How a modifier is similar to mutator?

0 Answers  


What relational operators if statements in c++?

0 Answers  


Is c++ the most powerful language?

0 Answers  






Why do you use the namespace feature?

0 Answers  


What parameter does the constructor to an ofstream object take?

0 Answers  


Is there any difference between dlearations int* x and int *x? If so tell me the difference?

16 Answers   Lason,


What is an accessor in c++?

0 Answers  


What are the different types of polymorphism in c++?

0 Answers  


What character terminates all character array strings a) b) . c) END

0 Answers  


Is java the same as c++?

0 Answers  


Categories