This question already has an answer here:
I have read a C++ book talk about wild pointer, and they just said that wild pointer is very dangerous without reason. What are those dangers ? Note: This is not about the definition of 'Wild Pointer'.
|
This question already has an answer here: I have read a C++ book talk about wild pointer, and they just said that wild pointer is very dangerous without reason. What are those dangers ? Note: This is not about the definition of 'Wild Pointer'. |
|||||||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
The dangers are that there is no way in either C or C++ to detect that a pointer is invalid by a simple programmatic check. As a result, you can dereference a dangling or wild pointer, write data to the pointed-to location or read data from it despite the pointer being invalid and your program invoking undefined behaviour. If you are lucky, the program will crash with an access violation or segmentation fault, if you're unlucky the invalid reads and writes will go undetected and might corrupt the state of your program in a way that is extremely hard to debug. A typical example would either be using an uninitialized pointer (which is becoming a little rarer as a lot of compilers will initialize pointers to known "bad" values in debug mode) or the more common "delete object, then write to it or read from it" idiom. The latter is especially deadly as deleted objects tend to be just marked as such by the memory manager, but remain in memory as they are until the get overwritten. Trying to debug such a problem without the appropriate tools like Valgrind or Purify will take a substantial amount of time. |
|||
|
|
|
Look at this example:
within the body of Undefined behavior can result in different things, it might lead to problems that will cause your application to crash, e.g. segmentation fault, but sometimes you might even end up with code that contains some error that produces an undefined behavior, but in most of situations this code will actually work. When there is undefined behavior that you can't observe, that's the worst situation, because there will be bugs in your code that will give you hard time and some of them might be really hard to find. |
||||
|
|
|
You can be accidentally changing some random-pointed variables that might be critical for the program thus it might crash or behave weirdly. |
|||
|
|
|
Wild pointer's are pointers that no longer point to valid memory, or never did in the first place. Attempting to use them can lead to Undefined Behavior. |
|||
|
|
|
a wild pointer can point to any memory location valid as well as invalid One is not sure when a wild pointer points to a valid location So the program behaviour would change drastically. Sometimes it works fine... sometimes it doesnot and sometimes it changes some value. Hence wild pointer is dangerous |
|||
|
|