up vote 2 down vote favorite
share [g+] share [fb]

I recently came across some weird looking class that had three constructors:

class Class
{
    public:
        explicit Class(int );

        Class(AnotherClass );

        explicit Class(YetAnotherClass, AnotherClass );

    // ...
}

This doesn't really make sense to me - I thought the explicit keyword is to protect compiler chosen construction from a foreign type.

Is this allowed? If it it, what does it mean?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

explicit only applies to single-argument constructors. For multiple-argument constructors, it's ignored and has no effect.

It's probably left over from some earlier code: someone added another parameter to an existing explicit constructor.

link|improve this answer
1  
Thanks for clarification. I'd figure GCC would warn for such an occasion. – LiraNuna Jul 13 '09 at 10:27
8  
With the caveat that if all but one of the multi-arg params have default values then it will have an effect – zebrabox Jul 13 '09 at 10:28
feedback

Your Answer

 
or
required, but never shown

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