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;
}
link|improve this question

77% accept rate
3  
Have you tried? – Crazy Eddie Jan 21 '11 at 21:09
1  
Time to start looking for circular references I suppose. :) – James Jan 21 '11 at 21:14
3  
@Jonathan: Is your destructor virtual? – Loki Astari Jan 21 '11 at 21:14
2  
@Jonathan: The virtual dtor needs to be int he base class. struct versus class matters not one little bit. See my updated post. – John Dibling Jan 21 '11 at 21:26
1  
In fact, when using shared_ptr, you are almost always safe even if the base class destructor is not virtual. – James McNellis Jan 21 '11 at 21:54
show 5 more comments
feedback

2 Answers

up vote 1 down vote accepted

Yes:

#include <string>
#include <iostream>
using namespace std;
#include <boost\shared_ptr.hpp>
using namespace boost;


class Foo
{
public:
    virtual string speak() const { return "Foo"; }
    virtual ~Foo() {};
};

class Bar : public Foo
{
public:
    string speak() const { return "Bar"; }
};

int main()
{
    boost::shared_ptr<Foo> my_foo(new Bar);
    cout << my_foo->speak();
}

Output is: Bar

link|improve this answer
feedback

I believe the answer is yes; boost pointers are coded such that derived classes are accepted wherever a superclass would be.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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