|
|
|
|
|
by gpderetta
1031 days ago
|
|
It is actually super easy, barely an inconvenience, as long as you know the actual dynamic type at construction time. For example shared-ptr to base can correctly invoke the correct derived type destructor even if the destructor is not virtual. Edit: accidentally a word. |
|
> For example shared-ptr to base can correctly invoke the correct derived type
Invoke what exactly? Im sorry I don't understand what you're trying to say here.
I guess you can force all derivied types to implement a clone() function, such that box<T> can do the deep copy, but Id consider that a fairly big inconvenience for such a simple pointer type.