I am developing a class for working with long arithmetic. How do I make my class support arithmetic operations between its objects?
1
Expert's answer
2010-08-03T11:20:00-0400
To do this you have to overload the arithmetic operators for your class. For example: the signature of overloading the operator "+" in the form of function of class Foo& Foo:: operator + (const Foo& f). Note that for the operators +=, -=, *=, /= you have to return *this for your overloaded operator to be used in the expressions like a += b + c.
Comments
Leave a comment