为什么在C ++中使用私有副本构造函数与已删除副本构造函数

时间:2018-11-03 01:29:45

标签: c++

为什么在C ++中为什么要使用私有副本构造函数而不是删除副本构造函数?

例如:

class Entity
{
private:
    Entity(const Entity &copy) // <== private copy constructor
    {
       /* do copy stuff */
    }
public:
    /* more code here... */
}

相对于:

class Entity
{
public:
    Entity(const Entity &copy) = delete; // <== copy constructor deleted

    /* more code here... */
}

不能完全回答我所问问题的相关问题:

What's the use of the private copy constructor in c++

Deleted vs empty copy constructor

1 个答案:

答案 0 :(得分:2)

2个可能的原因:

  • 您不能使用C ++ 11或更高版本

  • 您需要该类的对象可以通过该类的方法或其朋友来复制,但不能通过其他任何方式复制