I know how they are different syntactically, and that C++ uses new, and C uses malloc. But how do they work, in a high-level explanation?
|
marked as duplicate by Johannes Schaub - litb Dec 13 '08 at 23:52
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
I'm just going to direct you to this answer: http://stackoverflow.com/questions/240212/what-is-the-difference-between-newdelete-and-mallocfree#240308 . Martin provided an excellent overview. Quick overview on how they work (without diving into how you could overload them as member functions): new-expression and allocation
Sample:
There are a few special allocation functions given special names:
Example:
Code:
If the allocation function returns storage, and the the constructor of the object created by the runtime throws, then the operator delete is called automatically. In case a form of new was used that takes additional parameters, like
Then the operator delete that takes those parameters is called. That operator delete version is only called if the deletion is done because the constructor of the object did throw. If you call delete yourself, then the compiler will use the normal operator delete function taking only a
new-expression and arraysIf you do
The compiler is using the |
|||||||||||
|
|
What
So all in all, |
|||
|
|
|
"new" does a lot more than malloc. malloc simply allocates the memory - it doesn't even zero it for you. new initialises objects, calls contructors etc. I would suspect that in most implementations new is little more than a thin wrapper around malloc for basic types. |
|||
|
|
|
In C: malloc allocates a chunk of memory of a size that you provide in an argument, and returns back a pointer to this memory. The memory is declared on the heap, so make sure to deallocate it when you are finished. |
|||
|
|
|
Although The actual implementation of In general, blocks are allocated from the heap, a large area of memory in your program's address space. The library manages the heap for you, usually using system calls like There are many variations. You might want to keep separate lists of free and allocated blocks. You might get better performance if you have separate areas of the heap for blocks of common sizes or separate lists for those sizes. For instance, when you allocated a 16-byte block, the allocator might have a special list of 16-byte blocks so allocation can be O(1). It may also be advantageous to only deal with block sizes that are powers of 2 (anything else gets rounded up). For instance, the Buddy allocator works this way. |
|||
|
|
