How does boost::ptr_vector deep copy the underlying objects?

前端 未结 1 842
北海茫月
北海茫月 2021-01-18 14:01

ptr_vector is copy constructible and copy assignable. How can it deep copy the underlying objects when it doesn\'t know their concrete types?

相关标签:
1条回答
  • 2021-01-18 14:27

    The boost::ptr_vector container has an optional template parameter, CloneAllocator, that defines the cloning policy. The default allocator is the heap_clone_allocator, which simply invokes the copy constructor to clone an object.

    The Clone Allocator is used as a way to add a layer of indirection around the cloning. For example, it allows you to provide a custom allocator that correctly handles cloning of a noncopyable type.

    You can find more information in the Boost Pointer Containers Library documentation, which explains the Clonable and Clone Allocator concepts.

    0 讨论(0)
提交回复
热议问题