What are some of the general reasons for Memory Leakage and Segmentation Fault kind of errors ?
|
2
|
|||
|
|
|
Segfaults:
Memory/resource leaks:
How to detect/avoid:
|
||
|
|
|
|
See Effective C++ series in Addison Wesley, very good for exactly the issue at hand. Note that in pointer use one has to delete individually all of the elements then del the pointer - requires skill and is often incorrectly, leading to hidden errors that do not show up easily. The other posters have the answers, I am only adding an additional detail. |
||
|
|
|
|
Lots, including:
Not all of these apply to all languages, but these are some useful things to start thinking about. |
||
|
|
|
|
Memory Leaks: Generally this refers to a language like C where you manage the memory manually. In this case you would be allocating memory without freeing it up when you are done using it. The allocations keep piling up while the application is running and the memory can't be freed until the process finishes executing. Memory Leaks (Wikipedia) Segmentation Faults: The most common reason for this type of error is trying to access a part of memory that either doesn't exist or is outside of the allowed memory of your running program (for example if you tried to access the memory the OS is loaded in). Usually this means you are trying to use a bad pointer, so for example:
would cause a segfault because ptr is a null pointer (or garbage) and you have not allocated memory for the pointer to point to. Segmentation Fault (Wikipedia) |
||
|
|
