I am using a boost::ptr_vector over just std::vector as it will handle the deletion of all of the pointers for me. However when I do:
ptr_vector<SoftLabelRandomTreeFunctor> functors;
functors.resize(number_of_functors);
It complains that SoftLabelRandomTreeFunctor does not have a default constructor. However, I was under the impression that it would just need to resize big enough to fit number_of_functors * the size of a pointer to a SoftLabelRandomTreeFunctor, not number_of_functors * the size of a SoftLabelRandomTreeFunctor itself?
reserveto preallocate the memory if you know you are going to insert some elements. – Kerrek SB Nov 14 '12 at 17:02push_backs instead? Or use a different container, likestd::vector<std::unique_ptr<T>>, which seems more suitable to what you want to do. Theboost::ptr_vectoris a very specific container for a very specific use case, which doesn't seem to suit yours. Since you explicitly want pointers, you should have pointers in your visible design. – Kerrek SB Nov 14 '12 at 17:14