SFINAE 不适用于复制构造函数

tha*_*mas 6 c++ constructor sfinae

我有一个模板类,我想要两个复制构造函数。一种用于平凡类型,另一种用于非平凡类型。以下代码有效(使用一个副本 ctor):

template <typename T>
struct  MyStruct
{
    MyStruct()
    {}
    
    MyStruct(const MyStruct& o)
    {
        std::cout << "copy ";
        foo(o);
    }
    
    template <typename U = T, typename std::enable_if_t<!std::is_trivial<U>::value, int> =0>
    void foo(const MyStruct& o)
    {
        std::cout << "Non trivial" << std::endl;
    }
    
    template <typename U = T, typename std::enable_if_t<std::is_trivial<U>::value, int> =0>
    void foo(const MyStruct& o)
    {
        std::cout << "Trivial" << std::endl;
    }
    
    MyStruct(MyStruct&& o)
    {
        std::cout << "Move" << std::endl;
    }
};

struct MyType
{
    MyType(int i){}
};

int main()
{
    MyStruct<int> my1;
    MyStruct<int> my2(my1);
    
    MyStruct<MyType> mytype1;
    MyStruct<MyType> mytype2(mytype1);
}

// prints
// Copy Trivial
// Copy Non trivial
Run Code Online (Sandbox Code Playgroud)

当我尝试对两个复制构造函数执行相同操作时,它们似乎都没有生成(都被 SFINAEd 删除了)

struct  MyStruct
{
    MyStruct()
    {}
    
    template <typename U = T, typename std::enable_if_t<!std::is_trivial<U>::value, int> =0>
    MyStruct(const MyStruct& o)
    {
        std::cout << "Non trivial" << std::endl;
    }
    
    template <typename U = T, typename std::enable_if_t<std::is_trivial<U>::value, int> = 0>
    MyStruct(const MyStruct& o)
    {
        std::cout << "Trivial" << std::endl;
    }

    MyStruct(MyStruct&& o)
    {
        std::cout << "Move" << std::endl;
    }
};

Run Code Online (Sandbox Code Playgroud)

代码不编译:

main.cpp: In function ‘int main()’:
main.cpp:36:26: error: use of deleted function ‘constexpr MyStruct::MyStruct(const MyStruct&)’
     MyStruct<int> my2(my1);
                          ^
main.cpp:5:9: note: ‘constexpr MyStruct::MyStruct(const MyStruct&)’ is implicitly declared as deleted because ‘MyStruct’ declares a move constructor or move assignment operator
 struct  MyStruct
         ^~~~~~~~
main.cpp:39:37: error: use of deleted function ‘constexpr MyStruct::MyStruct(const MyStruct&)’
     MyStruct<MyType> mytype2(mytype1);
                                     ^
main.cpp:5:9: note: ‘constexpr MyStruct::MyStruct(const MyStruct&)’ is implicitly declared as deleted because ‘MyStruct’ declares a move constructor or move assignment operator
 struct  MyStruct
         ^~~~~~~~
Run Code Online (Sandbox Code Playgroud)

我试图用谷歌搜索它,我认为 SFINAE 也应该与复制构造函数一起工作。请不要建议使用if constexpt requires concept,这个问题是关于 SFINAE 的。谢谢你的帮助!

max*_*x66 5

不幸的是,模板构造函数不能是默认、复制或移动构造函数。

复制构造函数的签名MyStruct如下

MyStruct (MyStruct const &);
Run Code Online (Sandbox Code Playgroud)

在您的第二个示例中,此函数被隐式删除,因为您已编写了显式移动构造函数。

您的模板构造函数,具有以下签名,

template <typename, int>
MyStruct (MyStruct const &);
Run Code Online (Sandbox Code Playgroud)

是(是)一个有效的构造函数,但是,给定的是一个模板,(不幸被删除)真正的复制构造函数是首选。

可能的解决方案:添加一个真正的复制构造函数,通过附加参数调用(委托构造函数)模板构造函数。

我的意思是

template <typename T>
struct  MyStruct
{
    MyStruct()
    {}

    // delegating real copy constructor added
    MyStruct(const MyStruct & ms0) : MyStruct{ms0, 0}
     { }
    
    template <typename U = T,
              std::enable_if_t<!std::is_trivial<U>::value, int> = 0>
    MyStruct(const MyStruct& o, int = 0) // <-- added an int argument
     { std::cout << "Non trivial" << std::endl; }
    
    template <typename U = T,
              std::enable_if_t<std::is_trivial<U>::value, int> = 0>
    MyStruct(const MyStruct& o, int = 0) // <-- added and int argument
     { std::cout << "Trivial" << std::endl; }

    MyStruct(MyStruct&& o)
     { std::cout << "Move" << std::endl; }
};
Run Code Online (Sandbox Code Playgroud)