我编写了以下代码,unique_ptr<Derived>
其中使用了unique_ptr<Base>
预期的a
class Base {
int i;
public:
Base( int i ) : i(i) {}
int getI() const { return i; }
};
class Derived : public Base {
float f;
public:
Derived( int i, float f ) : Base(i), f(f) {}
float getF() const { return f; }
};
void printBase( unique_ptr<Base> base )
{
cout << "f: " << base->getI() << endl;
}
unique_ptr<Base> makeBase()
{
return make_unique<Derived>( 2, 3.0f );
}
unique_ptr<Derived> makeDerived()
{
return make_unique<Derived>( 2, 3.0f );
}
int main( int argc, char * argv [] )
{
unique_ptr<Base> base1 = makeBase();
unique_ptr<Base> base2 = makeDerived();
printBase( make_unique<Derived>( 2, 3.0f ) );
return 0;
}
我希望该代码不会编译,因为根据我的理解unique_ptr<Base>
,unique_ptr<Derived>
它们是不相关的类型,并且unique_ptr<Derived>
实际上不是从中派生的,unique_ptr<Base>
因此该赋值不应起作用。
但是,由于某种神奇的功能,它起作用了,我也不知道为什么,或者即使这样做是安全的。有人可以解释一下吗?
Base
它没有虚拟析构函数。
unique_ptr
那么在继承的情况下将毫无用处