How to call an overloaded operator in another member function of a class in C++ ?
|
|
Assuming it's overloaded as a member, you generally use If it's overloaded as a free function, you do pretty much the same sort of thing. For example, assuming you had a free function like:
You could invoke it from a member function like:
Probably not useful in quite this simplistic of a case, but still shows the general idea. |
||||
|
|
|
Your question is quite ambiguous but one of those three subanswers should work: Whenever you want use
C++ takes care about When you want to call overloaded operator like
And if you need to call operator of parent class:
|
||||
|
|
|
The overloaded operator will be called automatically and there is no need for explicit calling. Here is a quick example of operator overloading:
|
|||
|
|