it = map.begin(); ++it; for(; it != map.end(); ++it) { // do something } //shorter one: it = ++map.begin();