Milad Sikaroudi
Milad Sikaroudi

Reputation: 717

different behavior of static_cast and dynamic_cast in a specific scenario

I don't figure out the real difference between static_cast and dynamic_cast in below scenario:

                                **///with static_cast///**
    class Foo{};
    class Bar: public Foo
    {
        public:
          void func()
          {
            return;
          }
    };

    int main(int argc, char** argv)
    {
        Foo* f = new Foo;
        Bar* b = static_cast<Bar*>(f);
        b->func();
        return 0;
    }

Output:

Successfully Build and Compiled!

                                **///with dynamic_cast///**
    class Foo{};
    class Bar: public Foo
    {
        public:
          void func()
          {
            return;
          }
    };

    int main(int argc, char** argv)
    {
        Foo* f = new Foo;
        Bar* b = dynamic_cast<Bar*>(f);
        b->func();
        return 0;
    }

Output:

main.cpp: In function 'int main(int, char**)': main.cpp:26:34: error: cannot dynamic_cast 'f' (of type 'class Foo*') to type 'class Bar*' (source type is not polymorphic) Bar* b = dynamic_cast(f);

I'd be appreciated if someone could help me understand this!

Upvotes: 4

Views: 178

Answers (1)

Olaf Dietsche
Olaf Dietsche

Reputation: 74108

The hint is in the part

(source type is not polymorphic)

It means, for dynamic_cast to work, it needs a polymorphic base class, i.e. have a virtual method

class Foo {
public:
    virtual ~Foo() {}
};

Apart from that, it will not work, because f does not point to a Bar object. dynamic_cast will return a nullptr in this case, which you must check

Foo* f = new Foo;
Bar* b = dynamic_cast<Bar*>(f);
if (b != nullptr)
    b->func();

Upvotes: 6

Related Questions