Dynamic allocations with new/delete are said to take place on the free-store,
while malloc/free operations use the heap.
I'd like to know if there is an actual difference, in practice.
Do compilers make a distinction between the two terms? (Free store and Heap, not new/malloc)
|
|
||||
|
|
|
See http://www.gotw.ca/gotw/009.htm; it can describe the differences between the heap and the free-store far better than I could: Free-store:
Heap:
|
|||||
|
|
For C++, the difference between the free store and the heap has become purely conceptual. Like a jar for collecting bugs, and one for collecting cookies. One is labeled one way, the other another. This designation is meant to drive home the point that you NEVER mix "new" and "delete" with "malloc", "realloc", or "free" (or bit level sets for that matter). During interviews it's good to say that "new and delete use the free store, malloc and free use the heap; new and delete call the constructor and destructor, respectively, however malloc and free do not." Yet, you will often here that the memory segments are really in the same area - however, that CAN be compiler specific, that is to say, it is possible that both can designate different memory spaces as pools (not sure why it would be, though). |
||||
|
|
|
Mike Koval's answer covers the theory quite well. In practice, however, they are almost always the same region of memory -- in most cases if you dig into the compiler's implementation of In other words: from the machine's point of view, heap and free store are the same thing. The distinction exists inside the compiler. To make things even more confusing, before the advent of C++ we said "heap" to mean what is now called "free store." |
|||
|
|
|
The term "heap" may also refer to a particular data structure, but in the context of the C++ malloc, free, new, and delete operations the terms "heap" and "free store" are used more or less interchangeably. |
|||
|
|
|
I don't recall the standard ever mentioning the word heap, except in the descriptions of heap functions like |
|||
|