|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
2 | Clarification of intent | ||
Know who is owner of that memory.
How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.? Not having a clear memory ownership philosophy leads to interesting bugs or memory leaks, and smart pointerstime lost wondering if the char * returned by this function should be deallocated by the user, or not, or given back to a special deallocation function, etc.. As much as possible, the function/object allocating the memory must be the function/object deallocating it. |
||||
|
1 |
|
||
Know who is owner of that memory.
|
||||
