Why should I use new and not malloc()?

Go4Expert Founder
28Feb2005,17:02   #1
shabbir's Avatar
Just got a Mail from a user asking for a question as and thought also after answering him would like to share the same with Expert Advice Forums member

Why should I use new and not malloc()?

» Constructors/destructors:
New and Delete makes sure that constructors and Destructors are called but not the case with malloc and free functions of C.
» Pointer conversion safety:
malloc() returns a void* which isn't safe. new returns a pointer of the right type.
» new is a Operator:
new is an operator that can be overloaded for better memory management by a class, while malloc() is not an operaotor.
Contributor
9May2006,21:51   #2
Aztec's Avatar
Just to add few more things

>new operator computes the size of object automatically whereas malloc cannot.
>It is possible to initialize the object while allocating memory with new.
Ambitious contributor
21Sep2011,19:32   #3
poornaMoksha's Avatar
Adding one more point :

- Its possible to construct an object over an already allocated memory using another version of 'new' operator known as 'placement new' operator. While with malloc() it is not possible.
Light Poster
22Sep2011,23:30   #4
lipun4u's Avatar
certain disadvantage of new...

if the class doesn't have a default constructor, new can't be used to allocate memory for that object.

Please tell if i am right ?
Ambitious contributor
23Sep2011,10:25   #5
poornaMoksha's Avatar
From Wikipedia :

Quote:
The compiler will implicitly define a default constructor if no constructors are explicitly defined for a class. This implicitly-declared default constructor is equivalent to a default constructor defined with a blank body. (Note: if some constructors are defined, but they are all non-default, the compiler will not implicitly define a default constructor. This means that a default constructor may not exist for a class.)
Light Poster
23Sep2011,23:41   #6
lipun4u's Avatar
But the situation is if I have class with a parametrized constructor and no other constructor at all.
Ambitious contributor
24Sep2011,14:48   #7
poornaMoksha's Avatar
In this case too, new can be used to allocate memory and construct object.
Quote:
Originally Posted by lipun4u View Post
But the situation is if I have class with a parametrized constructor and no other constructor at all.
Mentor
30Sep2011,14:42   #8
xpi0t0s's Avatar
To create a class that cannot be instantiated with new you need to declare a private constructor. Of course, you will need to pair this with a friend class that will be able to create objects, otherwise you won't be able to create any objects of the first type at all, which would be rather pointless.
Newbie Member
13Oct2011,17:33   #9
GaneshShinde's Avatar
One question just poped in my head while reading this, it may be irrelevant to ask in this question.
Question is what is the similar unctions or operators for realloc, calloc like C language?
Newbie Member
13Oct2011,17:38   #10
GaneshShinde's Avatar
Corrected from last post
Quote:
Originally Posted by GaneshShinde View Post
One question just poped in my head while reading this, it may be irrelevant to ask in this question.
Question is what is the similar functions or operators in c++ for realloc, calloc like C language?