What is the lifetime and validity of C++ iterators ? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T19:41:10Zhttp://stackoverflow.com/feeds/question/759274http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/759274/what-is-the-lifetime-and-validity-of-c-iterators5What is the lifetime and validity of C++ iterators ?sylvainulg2009-04-17T06:40:01Z2009-07-16T12:30:38Z
<p>I'm planning to implement a list of Things in C++ where elements might be removed out of order. I don't expect that i'll need any kind of random access (i just need to sweep the list periodically), and the order of items isn't important either.</p>
<p>So I thought of <em><code>std::list<Thing*> with this->position = insert(lst.end(), thing)</code></em> should do the trick. I'd like the Thing class to remember the position of each instance so that i can later easily do <em><code>lst.erase(this->position)</code></em> in constant time. </p>
<p>However, i'm still a bit new to C++ STL containers, and i don't know if it's safe to keep iterators for such a long time. Especially, given that there will be other elements deleted ahead and after the inserted Thing before it's gone.</p>
http://stackoverflow.com/questions/759274/what-is-the-lifetime-and-validity-of-c-iterators/759294#7592946Answer by aJ for What is the lifetime and validity of C++ iterators ?aJ2009-04-17T06:52:50Z2009-07-16T12:30:38Z<p>In list all iterators remain valid during inserting and only iterators to erased elements get invalid during erasing.</p>
<p>In your case keeping iterator should be fine even when other elements deleted ahead and after the inserted Thing*.</p>
<p><strong>EDIT</strong>:</p>
<p>Additional details for vector and deque:</p>
<p><em>Vector</em>: </p>
<ul>
<li>inserting --- All iterators get
invalid if reallocation happens,
otherwise its valid.</li>
<li>erasing ---- All iterators after
erase point get invalid.</li>
</ul>
<p><em>deque</em>:</p>
<ul>
<li>inserting --- All iterators get
invalid.</li>
<li>erasing ---- All iterators get
invalid.</li>
</ul>
http://stackoverflow.com/questions/759274/what-is-the-lifetime-and-validity-of-c-iterators/759626#7596263Answer by Martin York for What is the lifetime and validity of C++ iterators ?Martin York2009-04-17T08:53:53Z2009-04-17T08:53:53Z<p>This depends on the container you use.</p>
<p>Check: <a href="http://www.sgi.com/tech/stl/" rel="nofollow">http://www.sgi.com/tech/stl/</a><br />
Look at each containers documentation at the end their will be a description on the conditions that iterators stay valid under.</p>
<p>For std::list<> they remain valid under all conditions until the element they actually refer to is removed from the container (at this point they are invalid).</p>