Conversion from void* to the pointer of the base class

前端 未结 4 1915
时光取名叫无心
时光取名叫无心 2020-12-05 21:01

I have some hierarchy: base, derived classes and some structure storing user data as void*. That void can store both Base and Derived classes pointers. Main problem that I d

相关标签:
4条回答
  • 2020-12-05 21:35

    void*'s can only be converted back to their original type. When you store a Derived* in a void*, you can only cast back to Derived*, not Base*.

    This is especially noticeable with multiple inheritance, as your derived object might not necessarily be at the same address as your base. If you really need to store things (and retrieve things) with void*, always cast to the base type first, so you have a stable way of getting the object back:

    #include <iostream>
    
    struct base { int type; };
    struct intruder { int iminyourclassstealingyourbase; };
    struct derived : intruder, base {};
    
    int main()
    {
        derived d; d.type = 5;
    
        void* good = (base*)&d;
        void* bad = &d;
    
        base* b1 = (base*)good;
        base* b2 = (base*)bad;
    
        std::cout << "good: " << b1->type << "\n";
        std::cout << "bad: " << b2->type << "\n";
    }
    

    If you then want to go back to the derived type, use a dynamic_cast (or static_cast if you're guaranteed it has to be of the derived type.)

    0 讨论(0)
  • 2020-12-05 21:39

    If you know it's a derived pointer and you want to get a base pointer, you can do this:

    Base* d_restored_to_base = (Base*)(Derived*)derived_v;
    

    You will find that the Base* points to a different location than the Derived*, so the intermediary cast is required.

    0 讨论(0)
  • 2020-12-05 21:43

    Use dynamic_cast, it can dynamically tell you if the pointer points to a Base object or not.

    0 讨论(0)
  • 2020-12-05 21:51

    When you use multiple inheritance, the resulting object is internally acting much like a composite, conceptually something like this:

    struct Derived {
      Base1 b1;
      Base2 b2;
    };
    

    You will get different addresses for your instance of Derived depending on whether you cast it to Base1 or Base2. So, you can't reliably do what you want to do. You'll need to keep a pointer to one of the involved types, and use dynamic_cast

    Alternatively, you could make your own rules - saying that you always store the address of your instance casted to a specific base class, and always cast back to this base class. This is very error-prone, and I'd strongly recommend that you try to store a pointer to a common base class if at all possible.

    0 讨论(0)
提交回复
热议问题