What is the correct way to forward all of the parent's constructors in C++0x?
I have been doing this:
class X: public Super {
template<typename... Args>
X(Args&&... args): Super(args...) {}
};
|
What is the correct way to forward all of the parent's constructors in C++0x? I have been doing this:
|
|||||||||||||||
|
|
There is a better way in C++0x for this
If you declare a perfect-forwarding template, your type will behave badly in overload resolution. Imagine your base class is convertible from
You call it with
What will be called? It's ambiguous, because |
|||||||||||||||||||
|
|
I think you need to do More importantly, though, you won't be forwarding copy constructors this way. The compiler will still generate one for you, because it doesn't consider template constructors. In the example provided, you're okay, because the compiler generated one will just call the parent copy constructor anyhow, which is exactly what you want. If that's not appropriate in a more complicated case, then you'll have to write it yourself. |
|||||||||||||
|