vote up 6 vote down star

What is the equivalent of a static_cast with boost::shared_ptr?

In other words, how do I have to rewrite the following

Base* b = new Base();
Derived* d = static_cast<Derived*>(b);

when using shared_ptr?

boost::shared_ptr<Base> b(new Base());
boost::shared_ptr<Derived> d = ???
flag

60% accept rate

4 Answers

vote up 10 vote down check

Use boost::static_pointer_cast:

boost::shared_ptr<Base> b(new Base());
boost::shared_ptr<Derived> d = boost::static_pointer_cast<Derived, Base>(b);
link|flag
I tried casting and rewrapping the raw pointer at first, not knowing about static_pointer_cast. So I think it's useful to have this info on stackoverflow. – dehmann Mar 9 at 2:52
vote up 7 vote down

There are three cast operators for smart pointers: static_pointer_cast, dynamic_pointer_cast, and const_pointer_cast. They are either in namespace boost (provided by <boost/shared_ptr.hpp>) or namespace std::tr1 (provided either by Boost or by your compiler's TR1 implementation).

link|flag
vote up 0 vote down

As a comment: if Derived does in fact derive from Base, then you should use a dynamic_pointer_cast rather than static casts. The system will have a chance of detecting when/if your cast is not correct.

link|flag
The system can't detect this if Base doesn't have virtual members though. Dynamic_cast is only magical on classes that have virtual members. – Aaron Mar 11 at 7:43
Also there is a performance hit. If you really know that the cast should always succeed, static_cast will work with no runtime overhead. – Joseph Garvin Jul 17 at 14:09
...no runtime overhead usually. I can't recall the details but with virtual multiple inheritance or some other corner case there is technically overhead, but still less than dynamic_cast. – Joseph Garvin Jul 17 at 14:09
vote up 0 vote down

It is worth to mention that the there is difference in the number of casting operators provided by Boost and implementations of TR1.

The TR1 does not define the third operator const_pointer_cast()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.