What are the common misuse of using stl container with iterators?
|
|
Forgetting that iterators are quite often invalidated if you change the container by inserting or erasing container members. For many great tips on using STL I highly recommend Scott Meyers's book "Effective STL" (sanitised Amazon link) |
||||||
|
|
|
The end range check should be using != and not < since the order of the pointers isn't guaranteed. Example:
|
||||||
|
|
|
Using them without reading the "Effective STL" book by Scott Meyers. :) Really. This makes most of the stupid bugs go away. |
||
|
|
|
Proper continuation after Assuming:
For instance on
This would work:
And this also:
It's been too many times really that I've had to apply these fixes in some production code :( |
||
|
|
|
|
Post-incrementing when pre-incrementing will do. |
||||||||
|
|
|
A few others:
|
||
|
|
|
|
Using an auto_ptr inside a container, e.g.
Fortunately, a lot of auto_ptr implementations these days are written to make this impossible. |
||
|
|
|
|
||
|
|
|
|
This isn't only problem with STL containers - modyfing container when iterating over it almost always leads to problems. This is very common source of bugs in games - most game loops consists of iterating over each game object doing something. f this something adds or erases elements from game objects container there is almost surelly bug. Solution - have two containers - objectsToDelete and objectsToAdd - in game code add objects to that containers, and update game objects container only after you iterated over it. objetsToAdd can be Set to ensure we wont delete anything more than one time. objectsToDelete can be Queue if you can construct Object without adding it to game objects container, or it can be some other class (ObjectCreateCommand?) if your code assumes that Object instance is always added to game objects container directly after creation (for example in constructor). |
|||
|
|
