简体   繁体   中英

Polymorphic QSharedPointer

I'm trying to use QSharedPointer in my polymorphic stucture, but I couldn't find right syntax to convert pointer of base class to pointer of derived class.

struct Switch : State {
 int a;
};

QSharedPointer <State> myState=QSharedPointer <State>(new Switch);  

QSharedPointer <Switch> mySwitchTest= ??? myState;

What should I put in the place of ???

Use qSharedPointerCast() :

QSharedPointer <Switch> mySwitchTest= qSharedPointerCast<Switch>(myState);

Or call staticCast() on the smart pointer:

QSharedPointer <Switch> mySwitchTest= myState.staticCast<Switch>();

Both versions are basically equivalent to doing static_cast on raw pointers.

For a dynamic cast, use qSharedPointerDynamicCast:

class Derived : public Base { ... };
QSharedPointer<Base> base...

QSharedPointer<Derived> derived = qSharedPointerDynamicCast<Derived>( base );

There are also equivalents for static_cast (as in silico showed), qobject_cast and const_cast. Pick your poison.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM