The assignment operator can be declared as
T& operator= (const t&);
in a class, but the arithmetic operators cannot be defined that way. It has to be friend function. I don't understand why? Can you please explain ?
|
|
The assignment operator can be declared as T& operator= (const t&); in a class, but the arithmetic operators cannot be defined that way. It has to be friend function. I don't understand why? Can you please explain ? |
|||
|
|
|
|
The problem is that if you do something like this:
it will not compile. A solution is to define operator+(int, A) and operator+(A, int) as friends of A. As a side note, the Boost Operators library makes this process very easy. |
||
|
|
|
|
It is not mandatory that arithmetic operators should be friend Well you can define like this:
The
This has to be done when the left hand side of the + operator is not a class, or it is a class but you can't add operator + to its definition. |
||
|
|
|
|
I think that C++ FAQ Lite will give you a definitive answer. |
||
|
|
|
|
They ideally should be globals and not necessarily friends, so that you can write:
Since, 1 is not an object of |
|||
|
|