Ogre的Forum上有人給了解答, 摘自C++ 2003 standard:
"23.2.4 Class template vector [lib.vector]
1 A vector is a kind of sequence that supports random access iterators. In addition, it supports (amortized) constant time insert and erase operations at the end; insert and erase in the middle take linear time. Storage management is handled automatically, though hints can be given to improve efficiency. The elements of a vector are stored contiguously, meaning that if v is a vectorwhere T is some type other than bool, then it obeys the identity &v[n] == &v[0] + n for all 0 <= n < v.size()."