So, I wrote a bunch of code that accesses elements in an stl vector by index[], but now I need to copy just a chunk of the vector. It looks like vector.insert(pos, first, last) is the function I want... except I only have first and last as ints. Is there any nice way I can get an iterator to these values?
|
|
|||||
|
|
Try this:
|
|||||||||||||
|
|
way mentioned by @dirkgently but EDIT
or
added after @litb notes. |
|||||||||||
|
|
Or you can use
|
|||
|
|
|
Also; Update: Needs a C++11x compliant compiler |
|||||||||||||||
|
|
Actutally std::vector are meant to be used as C tab when needed. (C++ standard requests that for vector implementation , as far as I know - replacement for array in Wikipedia) For instance it is perfectly legal to do this folowing, according to me:
Of course, either foo must not copy the address passed as a parameter and store it somewhere, or you should ensure in your program to never push any new item in vec, or requesting to change its capacity. Or risk segmentation fault... Therefore in your exemple it leads to
|
|||||||||||||
|