I was reading the C++ FAQ. There I found a point in the guideline for operator overloading uses:
If you provide constructive operators, they should allow promotion of the left-hand operand (at least in the case where the class has a single-parameter ctor that is not marked with the explicit keyword). For example, if your class Fraction supports promotion from int to Fraction (via the non-explicit ctor Fraction::Fraction(int)), and if you allow x - y for two Fraction objects, you should also allow 42 - y. In practice that simply means that your operator-() should not be a member function of Fraction. Typically you will make it a friend, if for no other reason than to force it into the public: part of the class, but even if it is not a friend, it should not be a member.
Why has the author written that operator-() should not be member function?
What are the bad consequences if I make operator-() as member function and what are other consequences?
operator()cannot be implemented as a free function. Most operators can, but not all. The quote deals withoperator-, notoperator()– David Rodríguez - dribeas Jun 9 '12 at 11:39