What is the lifetime and validity of C++ iterators ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:41:10Z http://stackoverflow.com/feeds/question/759274 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/759274/what-is-the-lifetime-and-validity-of-c-iterators 5 What is the lifetime and validity of C++ iterators ? sylvainulg 2009-04-17T06:40:01Z 2009-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&lt;Thing*&gt; with this-&gt;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-&gt;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#759294 6 Answer by aJ for What is the lifetime and validity of C++ iterators ? aJ 2009-04-17T06:52:50Z 2009-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#759626 3 Answer by Martin York for What is the lifetime and validity of C++ iterators ? Martin York 2009-04-17T08:53:53Z 2009-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&lt;> 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>