期待されるunique_ptr<Derived>
場所を使用する次のコードを書いたunique_ptr<Base>
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
仮想デストラクタがないのでUBを取得しました。
unique_ptr
継承が存在しない場合、これが不可能であるとかなり役に立たないでしょう