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

I have a strange situation over the following code. Please help me to get it clarified.

class B
{
       public:
            B();
            virtual void print(int data=10)
            {
                  cout << endl << "B--data=" << data;
            }
};
class D:public B
{
       public:
            D();
            void print(int data=20)
            {
                  cout << endl << "D--data=" << data;
            }
};

int main()
{
     B *bp = new D();
     bp->print();
return 0;
}

Regarding the output I expected

[ D--data=20 ]

But in practical it is

[ D--data=10 ]

Please help. It may seem obvious for you but I am not aware of the internal mechanism.

share|improve this question
2  
If an answer solves your problem (or makes you understand it), please accept it, using the green tick on the left of the answer. – Björn Pollex Jun 24 '11 at 9:30

5 Answers

up vote 6 down vote accepted

Default arguments are entirely compile-time feature. I.e. the substitution of default arguments in place of missing arguments is performed at compile time. For this reason, obviously, there's no way the default argument mechanism for member functions can depend on the dynamic (i.e. run-time) type of the object. It always depends on static (i.e. compile-time) type of the object.

The call you wrote in your code sample is immediately interpreted by the compiler as bp->print(10) regardless of anything else.

share|improve this answer
Thanks Andrey for clearing my doubt. I did not think in this direction. Thanks alot. – paper.plane Jun 24 '11 at 9:28

The standard says (8.3.6.10):

A virtual function call (10.3) uses the default arguments in the declaration of the virtual function determined by the static type of the pointer or reference denoting the object. An overriding function in a derived class does not acquire default arguments from the function it overrides.

This means, since you are calling print through a pointer of type B, it uses the default argument of B::print.

share|improve this answer
Fundoo answer but helps to understand. Thanks – paper.plane Jun 24 '11 at 9:29

Generally, those default arguments are used that are visible at a certain scope. You can do (but shouldn't) funky things:

#include <iostream>
void frob (int x) {
    std::cout << "frob(" << x << ")\n";
}

void frob (int = 0);
int main () {
    frob();                     // using 0
    {
        void frob (int x=5) ;
        frob();                 // using 5
    }
    {
        void frob (int x=-5) ;
        frob();                 // using -5
    }
}

In your case, the base class signature is visible. In order to use the derived default arguments, you must explicitly call that function through a pointer to your derived class, either by declaring it that way, or by casting it rightly.

share|improve this answer

your variable is of type B, so the function of B will be called. To call D, you have to either declare your variable as D, or cast to D.

share|improve this answer

Default argument value is passed on behalf of the caller. From the caller viewpoint it works with class B (not D), so it passes 10 (as for class B)

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.