Computer Science, asked by austin6073, 1 year ago

What is a friend function? what are the merits and demerits of using friend functions?

Answers

Answered by Amanbahubali
0
A friend function is declared by the class that is granting access, so friend functions are part of the class interface, like methods. Friend functions allow alternative syntax to use objects, for instance f(x) instead of x.f(), or g(x,y) instead of x.g(y). Friend functions have the same implications on encapsulation as methods






I know only friend function
Similar questions