Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Note that the title is wrong: operator() cannot be implemented as a free function. Most operators can, but not all. The quote deals with operator-, not operator() – David Rodríguez - dribeas Jun 9 '12 at 11:39

1 Answer

up vote 16 down vote accepted

Here is Fraction with the operator as a member function:

class Fraction
{
    Fraction(int){...}

    Fraction operator -( Fraction const& right ) const { ... }
};

With it, this is valid code:

Fraction x;
Fraction y = x - 42;

and its equivalent to x.operator-( Fraction(42) ); but this is not:

Fraction z = 42 - x;

Because 42 has no member function operator - in it (of course, its not even a class).

However, if you declare your operator as a free function instead, conversion operations apply to both of its arguments. So this

Fraction z = 42 - x;

turns into this

Fraction z = Fraction(42) - x;

which is equivalent to operator-( Fraction(42), x ).

share|improve this answer
...can you please elaborate the meaning of free function here ? Do you mean to say friend function ? – Abhishek Gupta Jun 9 '12 at 5:51
@Abhishek Gupta: No, I meant to say free function. A free function is a function at a namespace scope, that is the opposite of a member function. – K-ballo Jun 9 '12 at 5:52
Also please tell me what is the meaning of constructive operators ? – Abhishek Gupta Jun 9 '12 at 5:52
2  
All operators which result in constructing a new object. In this case the '-' operator for example. – pag3faul7 Jun 9 '12 at 8:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.