Unique copy of vector<unique_ptr>
You cannot simply copy a std::vector<std::unique_ptr>
because std::unique_ptr
is not copyable so it will delete the vector copy constructor.
If you do not change the type stored in the vector then you could make a "copy" by creating a whole new vector like
std::vector<std::unique_ptr<some_type>> from; // this has the data to copy
std::vector<std::unique_ptr<some_type>> to;
to.reserve(from.size()) // preallocate the space we need so push_back doesn't have to
for (const auto& e : from)
to.push_back(std::make_unique<some_type>(*e));
Now to
is a separate copy of from
and can be changed independently.
Additionally: If your type is polymorphic the above won't work as you would have a pointer to the base class. What you would have to do is make a virtual clone
member function and have clone
return a std::unique_ptr
to a copy of the actual derived object. That would make the code look like:
std::vector<std::unique_ptr<some_type>> from; // this has the data to copy
std::vector<std::unique_ptr<some_type>> to;
to.reserve(from.size()) // preallocate the space we need so push_back doesn't have to
for (const auto& e : from)
to.push_back(e->clone());