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

I'm trying to make an operator that will allow me to add an integer to one of my classes, but I'm having trouble as follows.

    struct Base
{
    //Will have value of zero
};

struct Derived : public Base
{
    int value_;
};

int & operator+=(int & num, Base & b);
int & operator+=(int & num, Derived & d);

With the operator implementation of

int & operator+=(int & num, Base & b)
{
    return num;
}

int & operator+=(int & num, Derived & d)
{
    num += d.value_;
    return num;
}

So I have a vector and I'm trying to iterate through it and add all of the values to one integer. However, even those that are of type Derived won't change the sum.

How can I make the operator overloading polymorphic?

share|improve this question
There is some funny smell around the whole idea, but at any rate, you should provide the definition of your vector. The first potential problem is that all your objects have been sliced to Base... – David Rodríguez - dribeas Apr 7 '12 at 0:32

1 Answer

Here is a nice dr. dobbs article that presents 3 solutions to your problem http://drdobbs.com/cpp/200001978 One of them, and I was thinking the same thing, is that you can rely your operators on virtual member functions or auxiliary functions.

share|improve this answer

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.