What is wrong with using delete instead of delete[]?
Is there something special happening under the covers for allocating and freeing arrays?
Why would it be different from malloc and free?
|
What is wrong with using delete instead of delete[]? Is there something special happening under the covers for allocating and freeing arrays? Why would it be different from malloc and free?
| |||
|
feedback
|
|
Objects created with With malloc and free you have a more simple situation. There is only 1 function that frees the data you allocate, there is no concept of a destructor being called either. The confusion just comes in because Using delete won't call the correct function to delete the memory. It should call delete[](void*) but instead it calls delete(void*). For this reason you can't rely on using delete for memory allocated with
Why does delete[] exist in the first place? Whether you do x or y:
Both are stored in char * typed variables. I think the reason for the decision of delete, and delete[] goes along with a long list of decisions that are in favor of efficiency in C++. It is so that there is no enforced price to do a lookup of how much needs to be deleted for a normal delete operation. Having 2 new and new[] seems only logical to have delete and delete[] anyway for symmetry. | |||||||
feedback
|
|
The difference is that delete will only delete the entire memory range, but will only call the destructor for 1 object. delete[] will both delete the memory and call the destructor for every single object. If you do not use delete[] for arrays, it's only a matter of time before you introduce a resource leak into your application. EDIT Update According to the standard, passing an object allocated with new[] to delete is undefined. The likely behavior is that it will act as I described. | |||||||||||
feedback
|
|
The reason for this requirement is historical and because Consider this code
These both return a Foo* pointer, the difference is the second call will result in the Foo constructor being called 10x, and there being roughly 10x as much memory. So now you want to free your objects. For a single object you would call delete - e.g. But here's the problem - oneEntry and tenEntries are both just Foo pointers. The compiler has no idea whether they point to one, ten, or a thousand elements. When you use the special syntax of What really happens is that for The question you could then ask is "why doesn't the compiler always store the size?" That's a great question and it dates back to the early days of C++. There was a desire that for built-in types (char, int, float, etc) the following would be valid for C++;
The reasoning behind this was an expectation that people would provide libraries that returned dynamically allocated memory, and users of these libraries would have no way of knowing whether to use free/delete. This desire for compatibility meant that the size of an array could not be stored as part of the array itself and had to be kept elsewhere. Because of this overhead (and remember, this was back in the early 80's) it was decided to do this book keeping only for arrays and not single-elements. Thus arrays need a special delete syntax that looks up this value. The reason malloc/free do not have this problem is that they simply deal with blocks of memory and do not have to worry about calling constructors/destructors. | ||||
|
feedback
|
|
Stroustrup talks about the reasons for separate
Whether this decision was a mistake or not is debatable - either way has good arguments, but we have what we have. | ||||
|
feedback
|
|
As to the "why" in the title: one of the design goals of C++ was that there wouldn't be any hidden costs. C++ was also developed at a time when every byte of memory still mattered a whole lot more than it does today. Language designers also like orthogonality: if you allocate the memory with I don't think there's any technical reason that | |||
|
feedback
|
|
When you use new[] to allocate an array, you are actually telling c++ the size of the array. When you use malloc, you are instead telling it how much memory is allocated. In the former case, freeing based on the size of the array would not make sense. In this case, it does. But since there is no difference between a pointer for an array vs. for a single object, a separate function is needed. | |||
|
feedback
|
|
new and delete are different from malloc and free in that malloc and free only allocate and free memory; they don't call ctors or dtors. | |||
|
feedback
|