vote up 20 vote down star
6

What is the difference between new/delete and malloc/free?

Related (duplicate?): In what cases do I use malloc vs new?

flag

9 Answers

vote up 29 vote down check

The most relevant difference is that the new operator allocates memory then calls the constructor, and delete calls the destructor then deallocates the memory.

link|flag
1  
Strictly speaking, the new operator just allocates the memory. It is the new expression which calls the new operator, then runs the constructor in the allocated memory. – Don Wakefield Oct 27 '08 at 23:36
Another difference is where the memory is allocated. I recently saw somewhere that malloc/free operate on the heap, while new/delete operate in another area of memory whose name eludes me now. (Suffice it to say, though, that other area can probably be thought of as another heap.) – RobH Apr 30 at 19:29
RobH - all memory is allocate don the heap. Local variables are on the stack. 'new' and malloc are normally the same function except for the subsequent calling of the ctors. – mgb Oct 6 at 19:37
@mgb: Yes you are correct that objects are allocated on either the "Application heap" or stack. But @RobH is referring to what the standard calls different parts of the "Application Heap". There is the "Heap" which is where malloc allocates memory from and "Free Store" where new allocates memory from. Though in some implementations these areas do overlap (this is an implementation detail). – Martin York yesterday
vote up 4 vote down

new calls the ctor of the object, delete call the dtor.

malloc & free just allocate and release raw memory.

link|flag
vote up 3 vote down

In C++ New/Delete call the Constructor/Destructor accordingly.

Malloc/Free simply allocate memory from the heap. New/Delete allocate memory as well.

link|flag
vote up 1 vote down

new/delete is C++, malloc/free comes from good old C.

In C++, new calls an objects constructor and delete calls the destructor.

malloc and free, coming from the dark ages before OO, only allocate and free the memory, without executing any code of the object.

link|flag
Anybody care to explain the downvote? If my answer is wrong, please tell me. – Treb Oct 27 '08 at 15:16
"Coming from the dark ages before OO" sounds like you're implying that new/delete are better than malloc/free when in reality, neither is better or worse, they just have different uses. Note that I'm not the ont that downvoted you, I'm just guessing. – Graeme Perrow Oct 27 '08 at 15:19
vote up 2 vote down

New and delete are C++ primitives which declare a new instance of a class or deletes them (thus invoking the destructor of the class for the instance).

malloc and free are C primitives and they allocate and free memory blocks (in size).

Both use the heap to make the allocation. Malloc and free are nontheless more "low level" as they just reserve a chunk of memory space which will probably be associated with a pointer. No structures are created around that memory (unless you consider a C array to be a structure).

link|flag
new in C++ doesn't declare an instance of a class. It (usually) allocates one from the heap, and it doesn't declare anything. You can declare an instance just by declaring it, in which case it will be on the stack, or in globals, depending on the storage duration of the declaration. – Steve Jessop Oct 27 '08 at 15:14
Well, it allocates the memory space for the class but you can't "declare" a class in the stack, not in the real sense of storing the class in the stack. The declaration involves just the pointer to the class which is always allocated in the stack the actual memory holding the class is in the heap. – Jorge Córdoba Oct 27 '08 at 15:28
Yes you can. According to the question tags this is C++, so objects can go on the stack. And new isn't a declaration, it's an expression. Declaring something and allocating it are separate things. – Steve Jessop Oct 27 '08 at 15:40
vote up -3 vote down

malloc/free is C.
new/delete is C++.

link|flag
There's a lot more to the difference than just that. – Graeme Perrow Oct 27 '08 at 15:19
I'd say that is probably the most significant difference ;) – Bobby Jack Oct 27 '08 at 16:04
malloc/free are functions, not "C". They can be called from assembly language, for example, and even C++ code. new/delete are C++ operators. – strager Dec 30 '08 at 9:48
vote up 1 vote down

The only similarities are that malloc/new both return a pointer which addresses some memory on the heap, and they both guarantee that once such a block of memory has been returned, it won't be returned again unless you free/delete it first. That is, they both "allocate" memory.

However, new/delete perform arbitrary other work in addition, via constructors, destructors and operator overloading. malloc/free only ever allocate and free memory.

In fact, new is sufficiently customisable that it doesn't necessarily return memory from the heap, or even allocate memory at all. However the default new does.

link|flag
vote up 52 vote down

new/delete

  1. Allocate/release memory
  2. Memory allocated from 'Free Store'
  3. Returns a fully typed pointer.
  4. new (standard version) never returns a NULL (will throw on failure)
  5. Are called with Type-ID (compiler calculates the size)
  6. Has a version explicitly to handle arrays.
  7. Reallocating (to get more space) not handled intuitively (because of copy constructor).
  8. If they call malloc/free is implementation defined.
  9. Can add a new memory allocator to deal with low memory (set_new_handler)
  10. operator new/delete can be overridden legally
  11. constructor/destructor used to initialize the object

malloc/free

  1. Allocates/release memory
  2. Memory allocated from 'Heap'
  3. Returns a void*
  4. Returns NULL on failure
  5. Must specify the size required in bytes.
  6. Allocating array requires manual calculation of space.
  7. Reallocating larger chunk of memory simple (No copy constructor to worry about)
  8. They will NOT call new/delete
  9. No way to splice user code into the allocation sequence to help with low memory.
  10. malloc/free can NOT be overridden legally

Technically memory allocated by new comes from the 'Free Store' while memory allocated by malloc comes from the 'Heap'. Weather these two areas are the same is an implementation details, which is another reason that malloc and new can not be inter-mixed.

link|flag
Another interesting factoid is the alignment guarantees. Harbison & Steele, 5th edition, says of malloc [pg. 407]: "A pointer to the first element of the region is returned, and it is guaranteed to be properly aligned for any data type." – Don Wakefield Oct 27 '08 at 23:39
A similar fact is true of new for an array of char or unsigned char: C++ standard, 5.3.4-10, and obviously any new is aligned for the type of the object being allocated (5.3.4-14). – Steve Jessop Oct 28 '08 at 3:01
4  
Too bad the two lists are not side by side, in a table-like way, to help compare the features. Is there a way to do that in StackOverflow? – paercebal Oct 28 '08 at 13:49
Allocating arrays in C is best acheived via the calloc() function, not by calculating the space requirement yourself. – gnud Oct 6 at 19:40
vote up 1 vote down

also,

the global new and delete can be overridden, malloc/free cannot.

further more new and delete can be overridden per type.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.