Search Results

0
votes

Passing copy of object to method — who does the copying?

If not changing the object is part of the method contract, the only possibility is having the copy made inside the method. Otherwise you are lying to your client. The fact that you actuall …
3
votes

when should you use ‘friend’ in c++ ?

The short answer would be: use friend when it actually improves encapsulation. Improving readability and usability (operators << and >> are the canonical example) i …
3
votes

Why is this cast not possible?

The problem is that a cast does not work on the generic arguments, but on the class as a whole. Document inherits from Item, true, but IFolderOrItem< Document> does not inherit from IFolderOrIt …