Tagged Questions
22
votes
4answers
8k views
static_cast with boost::shared_ptr?
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 ...
6
votes
4answers
2k views
What is the difference between static_cast and Implicit_cast?
What is implicit_cast? when should I prefer implicit_cast rather than static_cast?