In C++ does a pointer remains valid after stack unwinding or not ?
Thanks for consideration.
Regards Ehsan
|
In C++ does a pointer remains valid after stack unwinding or not ? Thanks for consideration. Regards Ehsan
| |||
feedback
|
|
It depends on what your pointer is pointing to. If it points to heap memory, it still remains valid. If it points to stack memory, it becomes invalid. | |||
|
feedback
|
|
It depends on the storage of the pointed-to object. If that object was stack-allocated then the pointer surely becomes invalid - stack unwinding will properly destroy the object. If the object was heap-allocated the pointer only becomes invalid if there's some RAII variable that deallocates the object during stack unwinding. | |||
|
feedback
|
|
No. With stack Unwinding all variables/pointers that are declared in the scopes of the unwounded part of the stack get destroyed. Also, the rule takes in to consideration the
Pointers allocated with memory on heap will not be destroyed on stack unwinding because they are allocated on Heap and not stack. One important rule to remember is NEVER return pointers or references to local variables inside a function. The pointer or reference will contain garbage values. | |||||||||
feedback
|
|
Consider some examples:
...is the same as...
That's fine, as the pointers are to the heap and thus independent of the stack, function calls and programmatic scopes. The pointer value is copied as the function returns.
The above returns a pointer to a variable | |||
|
feedback
|