What is the fundamental difference, if any, between a C++ std::vector and std::basic_string?
|
|
There are a few helper methods tacked on to EDIT: And as @Noah Roberts points out, many STLs contain optimizations that favor typical uses of strings, for example the "Small String Optimization" found in the Dinkumware implementations. |
|||||
|
|
The key difference is that
|
|||||||||||||||
|
Relevant quotes for non-believers: [basic.string]:
|
|||||||||||
|
|
A vector is a data structure which simulates an array. Deep inside it is actually a (dynamic) Array. The basic_string class represents a Sequence of characters. It contains all the usual operations of a Sequence, and, additionally, it contains standard string operations such as search and concatenation. You can use vector to keep whatever data type you want |
|||||||||||
|
|
The basic_string provides many string-specific comparison options. You are right in that the underlying memory management interface is very similar, but string contains many additional members, like c_str(), that would make no sense for a vector. |
|||||||
|