What are the difference between a std::vector and an std::array in C++? When should one be used over another? What are the pros and cons of each? All my textbook does is list how they are the same.
|
Since it stores the elements in memory allocated on the heap, it has some overhead in respect to static arrays.
It's more limited than For an introduction to
|
|||||
|
|
What a vector is actually a wrapper around an array. Arrays are not objects but rather a representation of allocated memory. A vector will allocated a fixed amount of memory (an array), allowing you to add and remove elements easily. Once you have added enough elements that the array within the vector is full, it will create a new array of twice the size - moving every element from the old array into the new one. This is all done behind the scenes within the Vector class. Use arrays whenever you know that you have a fixed length and do not intend to change that length. Otherwise, use a vector. A vector has the advantage of having convenient methods such as adding and removing elements with ease. However, when your vector hits its maximum size, it will have to expand its size (by 2) and move all of the elements over. This is an O(n) operation, where n is the number of elements in your vector (kind of slow). In addition, your vector will always have unused space. While usually this doesn't matter, it is an advantage of an array with a fixed length. |
||||
|
|
|
Using the
There are
Edit: After reading Zud's reply to the question, I felt I should add this: The |
||||
|
|
|
A vector is a container class while an array is an allocated memory. |
|||
|

std::vectorvsstd::array(which is new to C++0x), or ofstd::vectorvs C-style arrays? – Matteo Italia Dec 12 '10 at 23:01std::vectorvs.std::arrayand how the terms are different. – Zud Dec 12 '10 at 23:02std::arrayis not the same as a C++ array.std::arrayis a very thin wrapper around C++ arrays, with the primary purpose of hiding the pointer from the user of the class. I will update my answer. – ClosureCowboy Dec 12 '10 at 23:19