Pointer to deallocated location Is it a Undefined Behavior?
int *p = new int;
*p = 10;
delete p;
*p = 10;
cout << *p << endl;
|
Pointer to deallocated location Is it a Undefined Behavior?
|
|||
|
There mere existence of a pointer to a deallocated location is not undefined behavior in itself. Attempting to dereference that pointer does produce undefined behavior though. |
|||
|
|
|
Dereferencing a deleted pointer is an undefined operation. Don't do it. |
|||||||
|
|
This is undefined behavior:
|
|||
|
|
|
When you allocate memory to make a new pointer, as you do in the first line
You're asking the operating system to produce some memory for you to use, for as long as you like. You can then put something in that spot, as you then do
This memory is available for you to use as long as you want, and then you can tell the operating system you're done with it, by calling
The operating system now has the memory available to it, but it may or may not do something with that memory. If you allocate a bunch of other memory, it is possible that the new memory range includes this memory. The operating system may give away this memory to something else, or it may not - it's not going to tell you, that's why it is said to be undefined behavior to still use that place in memory.
You then reuse this place of memory to set it to 10 again. Nothing else has happened in the meantime and this is a rather trivial program, so the operating system hasn't done anything else with that block of memory yet, so setting it in this case does not have any greater effect.
Again, the operating system owns the memory right now, but it isn't likely doing anything with it at this point; it's like staying in a hotel room after your stay is officially over. You may or may not be able to stay there, as you don't know whether the room is being used by another person afterward or if it is remaining empty. You could be thrown out, or you could be safe. |
|||
|
|
Undefinedin my dictionary I don't see "Crash" as any of the meanings... – Mehrdad May 19 '12 at 5:32