标签: c++ delete-operator
我发现的所有使用'删除'的示例关键字是在公共职能上完成的:
class X { public: X(const X&) = delete; };
为什么他们不使用默认私人产品?
class X { X(const X&) = delete; };