vote up 1 vote down star

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?

flag

1 Answer

vote up 7 vote down check

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|flag
1  
Thanks for clarification. I'd figure GCC would warn for such an occasion. – LiraNuna Jul 13 at 10:27
5  
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 at 10:28

Your Answer

Get an OpenID
or

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