is there a way of first initialize shared_ptr with nullptr and after some time assing a pointer to a class to it?
//pseudo code
std::shared_ptr<MyClass> ptr(nullptr);
//and later
ptr->assign(new MyClass);
|
is there a way of first initialize shared_ptr with nullptr and after some time assing a pointer to a class to it?
|
|||
|
|
Are you looking for |
|||
|
|
|
Use shared_ptr::reset:
|
|||
|
|
|
Perhaps not as efficient as calling reset, but this should also work. Create an inline temp instance of shared_ptr and assign it.
|
|||
|
|