vector

Started by
2 comments, last by Austrian Coder 21 years, 6 months ago
Hi! I have here a little problem. I am working on an Array-template, which base on the stl-vector. All work fine, but how can i delete an element in the stl-vector? Thx, Christian
Advertisement
The erase() function.

[ MSVC Fixes | STL | SDL | Game AI | Sockets | C++ Faq Lite | Boost | Asking Questions | Organising code files | My stuff ]
Array based containers including string, vector, and deque, require the erase() algorithm to permanently remove an element from the container. Understand that remove() will move one or more elements around thus making the user thinks that it has removed an element. In reality, it justed moved the element around and overrite the element''s position with a different value.

In summation, use erase() to permanently remove an element from an array-based STL container.

Kuphryn
Thanks alot! Works fine

This topic is closed to new replies.

Advertisement