What is the best method to go about passing a shared_ptr of a derived type to a function that takes a shared_ptr of a base type?
I generally pass shared_ptrs by reference to avoid a needless copy:
int foo(const shared_ptr<bar>& ptr);
but this doesn't work if I try to do something like
int foo(const shared_ptr<Base>& ptr);
...
shared_ptr<Derived> bar = make_shared<Derived>();
foo(bar);
I could use
foo(dynamic_pointer_cast<Base, Derived>(bar));
but this seems sub-optimal for two reasons:
- A
dynamic_castseems a bit excessive for a simple derived-to-base cast. - As I understand it,
dynamic_pointer_castcreates a copy (albeit a temporary one) of the pointer to pass to the function.
Is there a better solution?
Update 2
It turned out to be an issue of a missing header file. My apologies.
shared_ptr? Why no const-reference of bar? – ipc Nov 15 '12 at 18:08dynamiccast is only needed for downcasting. Also, passing the derived pointer should work just fine. It'll create a newshared_ptrwith the same refcount (and increase it) and a pointer to the base, which then binds to the const reference. Since you're already taking a reference, however, I don't see why you want to take ashared_ptrat all. Take aBase const&and callfoo(*bar). – Xeo Nov 15 '12 at 18:08shared_ptrto pass to the function? I'm fairly sure there's no way to avoid that. – Mike Seymour Nov 15 '12 at 18:11