Can boost::smart_ptr such as scoped_ptr and shared_ptr be used in std containers such as std::map?
class SomeClass
{
std::map<int,boost::scoped_ptr<SomeOtherClass> > a_map;
};
As boost::smart_ptr can be used for polymorphism, is it true in this case as well? Will the destruction of the container, trigger the correct destruction of the subclasses?
struct test { ~test() { std::cout << "~test" << std::endl; } }; int main() { vector<shared_ptr<type> > v; v.push_back( make_shared<test>() ); }(or something in this line, its hard to write code in a comment). Then compile and verify whether destructors are called or not. Try again withscoped_ptrand see if the code even compiles. Throw in a couple other operations (resize, ...) and verify. – David Rodríguez - dribeas Jan 22 '11 at 0:32