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 …
