Good morning,
I've got a general question about overloading operators.
Suppose you have a class that overloads the + operator and overloads the = operator,
if you do something like this
length3 = length1 + length2,
will you automatically call both the overloaded + and = operator and if so, what is the order of operation, which would be called first?
Thank you,
A.