我有一个类层次结构,可以简单地这样说:
struct Parent {
Parent() { }
Parent(Parent& p, std::string s) { }
private:
// I want this class to be non-copyable
Parent(const Parent&);
};
struct Child : public Parent {
Child() { }
Child(Parent& p) : Parent(p, "hi") { }
};
当我尝试创建两个这样的实例时:
Child c1;
Child c2(c1);
我从 Clang 收到以下错误:
test.cpp:37:8: error: call to deleted constructor of 'Child'
Child c2(c1);
^ ~~
test.cpp:30:8: note: function has been explicitly marked deleted here
struct Child : public Parent {
^
1 error generated.
我希望这个类是不可复制的,那么有没有办法Parent&
调用重载而不是复制构造函数?我知道它为什么会这样,但我正在寻找一种解决方法。我想Child(Parent& p)
被调用而不必投射它。
我在GCC和 Visual Studio 中也遇到了这个错误。虽然我不明白英特尔的编译器,但其他三个的一致行为似乎表明它是错误的,而其他的则是正确的。