web-dev-qa-db-ja.com

C ++:boost :: dynamic_pointer_castの使用中の「...はポリモーフィック型ではありません」

次のコードで次のエラーが発生するのはなぜですか?

1>C:\Libs\boost_1_44\boost/smart_ptr/shared_ptr.hpp(259): error C2683: 'dynamic_cast' : 'my_namespace::A' is not a polymorphic type
1>          D:\[location]\[header_filename].h(35) : see declaration of 'my_namespace::A'
1>          C:\Libs\boost_1_44\boost/smart_ptr/shared_ptr.hpp(522) : see reference to function template instantiation 'boost::shared_ptr<T>::shared_ptr<my_namespace::A>(const boost::shared_ptr<my_namespace::A> &,boost::detail::dynamic_cast_tag)' being compiled
1>          with
1>          [
1>              T=my_namespace::B
1>          ]
1>          [location]\[source_filename].cpp(217) : see reference to function template instantiation 'boost::shared_ptr<T> boost::dynamic_pointer_cast<my_namespace::B,striker::A>(const boost::shared_ptr<my_namespace::A> &)' being compiled
1>          with
1>          [
1>              T=my_namespace::B
1>          ]
1>C:\Libs\boost_1_44\boost/smart_ptr/shared_ptr.hpp(260): fatal error C1903: unable to recover from previous error(s); stopping compilation

C++コードは多かれ少なかれ次のとおりです。

#include <list>
#include "boost/pointer_cast.hpp"
#include "boost/shared_ptr.hpp"

struct A
{
public:
    A(const MyEnum an_enum_, const int an_int_) :
        an_enum(an_enum_),
        an_int(an_int_)
    {}

    const MyEnum an_enum;
    const int an_int;
};

struct B : public A {
public:
    B(const int some_int_, const MyStruct &a_struct_) :
        A(ENUM_OPTION_A, an_int_),
        a_struct(a_struct_)
    {}

    const MyStruct a_struct;
};


// Ussage in some function:
// ...
boost::shared_ptr<A> a_ptr = boost::shared_ptr<A>( new B() );
std::list<boost::shared_ptr<A>> a_list;
a_list.Push_back(a_ptr);
// ...
boost::shared_ptr<A> a_ptr2 = a_list.front();
boost::shared_ptr<B> b_ptr = boost::dynamic_pointer_cast<B>(a_ptr2); // <-- error here
// ...
21
Jonathan

dynamic_castはポリモーフィッククラスでのみ機能します。そして、polymorphicクラスは、デストラクタであっても、少なくとも1つのvirtual関数を持つクラスです。

//polymorphic classes
struct A
{
   virtual ~A(); //even virtual destructor makes a class polymorphic!
};
struct B : A
{
   void f();
};

//non-polymorphic classes    
struct C
{
   ~C(); //not virtual
};

struct D : C
{
   void f(); //not virtual either
};

上記のコードでは、ABはポリモーフィッククラスですが、CDはそうではありません。

A *pA = new B();
B *pB = dynamic_cast<B*>(pA); //okay

C *pC = new D();
D *pD = dynamic_cast<D*>(pC);  //error -  not polymorphic class

dynamic_castでは、コンパイルするためにソースタイプのみがpolymorphicである必要があることに注意してください。宛先がpolymorphicでない場合、dynamic_castはnullポインターを返します。

D *pD = dynamic_cast<D*>(pA);  //okay - source (pA) is polymorphic

if ( pD )  
      cout << "pD is not null" ;
else 
      cout << "pD is null";

出力:

pD is null

オンラインデモ: https://web.archive.org/web/20000000000000/http://www.ideone.com/Yesxc

59
Nawaz

'dynamic_cast' : 'my_namespace::A' is not a polymorphic type単一のvirtual関数を定義または継承しないため。仮想デストラクタを追加するだけで大​​丈夫です。

dynamic_castはそのような「ポリモーフィック」タイプに対してのみ機能します。

4

struct Aには仮想メソッド(デストラクタさえも)がないため、dynamic_castからA*を使用することはできません-少なくとも1つの仮想メンバー関数を持つ型へのポインターのみを使用できますdynamic_cast オン。 boost::dynamic_pointer_castは内部でdynamic_castを実行しますが、同じ要件が適用されます。

2
sharptooth