Can boost::smart_ptr such as scoped_ptr and shared_ptr be used in polymorphism?
class SomeClass
{
public:
SomeClass()
{
a_ptr.reset(new SubClass);
}
private:
boost::scoped_ptr<SuperClass> a_ptr;
}
|
Can boost::smart_ptr such as scoped_ptr and shared_ptr be used in polymorphism?
| ||||
|
show 5 more comments
feedback
|
|
Yes:
Output is: | ||||
|
feedback
|
|
I believe the answer is yes; boost pointers are coded such that derived classes are accepted wherever a superclass would be. | |||
|
feedback
|
virtualdtor needs to be int he base class.structversusclassmatters not one little bit. See my updated post. – John Dibling Jan 21 '11 at 21:26shared_ptr, you are almost always safe even if the base class destructor is not virtual. – James McNellis Jan 21 '11 at 21:54