Advertisements
Advertisements
Question
Explain the difference between operator function as member function and as a friend function.
Distinguish Between
Explain
Advertisements
Solution
The main difference between an operator function implemented as a friend function and as a member function is that a friend function requires one argument for unary operators and two arguments for binary operators. In a member function, the object that calls the function is passed implicitly, so it is automatically available to the function. This implicit passing does not occur in the case of a friend function. The arguments can be passed either by value or by reference.
shaalaa.com
Is there an error in this question or solution?
