Assume I have overloaded () let's say to return an integer, I am writing some method of my class and I need to call the overloaded () on the current object,
Can I write say 3 + (i,j) instead of 3 + (*this)(i,j) ?
Assume I have overloaded () let's say to return an integer, I am writing some method of my class and I need to call the overloaded () on the current object,
Can I write say 3 + (i,j) instead of 3 + (*this)(i,j) ?
Copyright © 2021 Jogjafile Inc.
You can't say
but you can say
or