Foo* set = new Foo[100]; // ... delete [] set;You don't pass the array's boundaries to delete[]. But where is that information stored? Is it standardised?
|
5
|
|
|||
|
|
|
|
When you allocate memory on the heap, your allocator will keep track of how much memory you have allocated. This is usually stored in a "head" segment just before the memory that you get allocated. That way when it's time to free the memory, the de-allocator knows exactly how much memory to free. QuantumPete |
||||||||||||
|
|
|
It depends on the implementation of your compiler. The C++ FAQ lite has some more information on the subject. |
|||
|
|
|
|
The information is not standardised. However in the platforms that I have worked on this information is stored in memory just before the first element. Therefore you could theoretically access it and inspect it, however it's not worth it. Also this is why you must use delete [] when you allocated memory with new [], as the array version of delete knows that (and where) it needs to look to free the right amount of memory - and call the appropriate number of destructors for the objects. |
||
|
|
|
|
A nice description of how this might work in practice is given by Raymond Chen: http://blogs.msdn.com/oldnewthing/archive/2004/02/03/66660.aspx |
||
|
|
|
|
Because the array to be 'deleted' should have been created with a single use of the 'new' operator. The 'new' operation should have put that information on the heap. Otherwise, how would additional uses of new know where the heap ends? |
||
|
|
|
|
This isn't something that's in the spec -- it's implementation dependent. |
||
|
|
|
|
It's defined in the C++ standard to be compiler specific. Which means compiler magic. It can break with non-trivial alignment restrictions on at least one major platform. You can think about possible implementations by realizing that Keep in mind that Plus, this is orthogonal to how C knows the size of memory allocated by MSN |
||
|
|
|
|
Basically its arranged in memory as: [info][mem you asked for...] Where info is the structure used by your compiler to store the amount of memory allocated, and what not. This is implementation dependent though. |
||
|
|
|
|
It is not standardized. In Microsoft's runtime the new operator uses malloc() and the delete operator uses free(). So, in this setting your question is equivalent to the following: How does free() know the size of the block? There is some bookkeeping going on behind the scenes, i.e. in the C runtime. |
||
|
