I recently found the boost ptr_vector useful to manage my collection of heap-allocated objects. The pointer collection library is very nice, but unfortunately, I'm being held up by one thing.

Another part of my code needs to explicitly hold a pointer to one of my objects in the ptr_vector (for specific reasons it cannot be a reference). However, when you access an object in a ptr_vector, you get a reference, T& (even though you used ptr_vector.push_back(T *)

Is there anyway I can get a plain pointer out of a boost::ptr_vector?

link|improve this question

2  
Can you explain why it must be a pointer? Maybe there is an alternative. – Björn Pollex Jan 17 at 9:35
Can you also explain what you mean by hold: does it imply ownership ? Or merely to access the pointed value ? – Matthieu M. Jan 17 at 10:56
feedback

2 Answers

up vote 5 down vote accepted

Yes,

boost::ptr_vector<int> v;
v.push_back(new int());
int* ptr = &v[0];
link|improve this answer
feedback

Same way you do from a regular vector: &myvec[index]. Of course you're on your own ensuring that the pointer is not used after the object is no longer there. If this becomes difficult then you can consider switching to a vector<shared_ptr<T> > rather than a ptr_vector<T>.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.