如何从复制构造函数委托给通用复制构造函数模板?

时间:2013-03-07 06:05:43

标签: c++ c++11 constructor copy-constructor

如果我想编写一个通用的复制构造函数(一个会采用任何参数类型的构造函数),那么这很容易做到:

class Widget {
public:
  template<typename T> Widget(T&& other);
};

这不会阻止编译器生成传统的复制构造函数,因此我想自己编写并委托给模板。但是我该怎么做?

class Widget {
public:
  template<typename T> Widget(T&& other);
  Widget(const Widget& other): ??? {}         // how delegate to the template?
};

我尝试用这种方式编写委托构造函数,

Widget(const Widget& other): Widget<const Widget&>(other){}

但VC11,gcc 4.8和clang 3.2都拒绝它。

如何编写我正在尝试编写的委托拷贝构造函数?

1 个答案:

答案 0 :(得分:3)

您不能为构造函数模板指定模板参数;你只能扣除。也许您可以从answer

中的一个调整my old posts
// NOT Tested!
#include <utility>

class Widget
{
    enum fwd_t { fwd };

    // Your true master constructor
    template< typename T >  Widget( fwd_t, T &&t );

public:
    template < typename T >
    Widget( T&& other );
        : Widget( fwd, std::forward<T>(other) )
    {}
    Widget( const Widget& other )
        : Widget( fwd, other )
    {}
};

两个单参数构造函数转发给两个参数的兄弟构造函数。