I had been thinking about posting this for quite some time now, and all by coincidence I happened to get a chance to mention it just the other day in an answer that I wrote to a question on Programmers-StackExchange. So, here it is in a more formal way:
If class M stores or manipulates or in any other way works with instances of destructible (disposable) class D, it may not assume the responsibility to destruct these instances, unless it is explicitly told that ownership of these instances is transferred to it. Therefore, class M must accept a boolean called ‘handoff’ as a construction-time parameter, stating whether instances of D are being handed off to it, and it can therefore destruct them when it is done with them.
Example:
|
|
Example:
|
|
In languages which support optional parameters, the ‘handoff’ parameter should default to false.