Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to be able to convert between std::vector and its underlying C array int* without explicitly copying the data.

Does std::vector provide access to the underlying C array? I am looking for something like this

vector<int> v (4,100)
int* pv = v.c_array();

EDIT:

Also, is it possible to do the converse, i.e. how would I initialize an std::vector from a C array without copying?

int pv[4] = { 4, 4, 4, 4};
vector<int> v (pv);
share|improve this question
There is a 'problem' with this: int pv[4] = { 4, 4, 4, 4}; vector<int> v (pv); it actually copies the contents of pv into v ... you just have to be aware of that – Florian Oct 8 '10 at 8:32

4 Answers

up vote 48 down vote accepted

You can get a pointer to the first element as follows:

int* pv = &v[0];

This pointer is only valid as long as the vector is not reallocated. Reallocation happens automatically if you insert more elements than will fit in the vector's remaining capacity (that is, if v.size() + NumberOfNewElements > v.capacity(). You can use v.reserve(NewCapacity) to ensure the vector has a capacity of at least NewCapacity.

Also remember that when the vector gets destroyed, the underlying array gets deleted as well.

share|improve this answer
7  
"so long as you do not add additional elements to the vector" - without reserving space first. If you reserve(), then you can add elements up to the capacity you reserved, and guarantee that references and iterators are still valid. – Steve Jessop Nov 14 '09 at 4:05
1  
@Steve: Good point. Just be sure you reserve() before you get the pointer! :) – Drew Hall Nov 14 '09 at 4:23
@Steve: That's true, though I think I'd find it a tad disconcerting if I saw code inserting elements into a vector and using pointers to elements in the vector that were obtained before the insertion. Still, I've modified that paragraph to try and more clearly state when reallocation happens. – James McNellis Nov 14 '09 at 5:14
Thanks for your answer. What about the reverse conversion? How can I initialize an std::vector<int> from a C array int* without copying? – Celil Nov 14 '09 at 22:37
2  
The reverse isn't possible; the STL containers manage their own memory. You can't create a vector and have it manage some array that you allocated elsewhere. The easiest way to copy an array into a vector would be to use std::vector<int> v(&pv[0], &pv[4]);, using the example you added to your question. – James McNellis Nov 15 '09 at 0:52
show 2 more comments
int* pv = &v[0]

Note that this is only the case for std::vector<>, you can not do the same with other standard containers.

Scott Meyers covers this topic extensively in his books.

share|improve this answer
1  
I believe this is even guaranteed to work by the standard. – Omnifarious Nov 14 '09 at 3:36
"you can not do the same with other standard containers" - IIRC you will be able to do it with string in C++0x, and in practice pretty much every implementation does actually guarantee that string's storage is contiguous. – Steve Jessop Nov 14 '09 at 4:07
3  
You can get a read-only array containing the elements of a std::string using its c_str() or data() members. Because of this, while the standard doesn't require strings to be stored contiguously in memory, it would be very odd and inefficient not to do so. – James McNellis Nov 14 '09 at 4:21
I assume the standard envisaged strings might be implemented as a rope-like thing, so that appending and sub-stringing are faster. Access would be slightly slower (like deque vs vector), and c_str() would incur a hefty penalty the first time it's called. As it turned out, implementers all seem to have weighed up the trade-off and wanted nothing to do with it... – Steve Jessop Nov 14 '09 at 15:21
1  
I've always thought it would be interesting to have a C/C++ implementation that made "bizarre" assumptions--like debugging iterators (not just a simple pointer), but (much) more so. While still be standards-compliant, of course. – Dan Nov 14 '09 at 16:54
show 1 more comment

If you have very controlled conditions, you can just do:

std::vector<int> v(4,100);
int* pv = &v[0];

Be warned that this will only work as long as the vector doesn't have to grow, and the vector will still manage the lifetime of the underlying array (that is to say, don't delete pv). This is not an uncommon thing to do when calling underlying C APIs, but it's usually done with an unnamed temporary rather than by creating an explicit int* variable.

share|improve this answer

One way of protecting yourself against size changes is to reserve the maximal space (or larger) that you will need:

std::vector<int> v(4,100); //Maybe need 
v.reserve(40);             //reallocate to block out space for 40 elements

This will ensure that push_backs won't cause reallocation of the existing data.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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