标签归档:hash_map迭代删除

RSS feed of hash_map迭代删除

最后更新于 .

一.有关hash_map的使用
map中可以用 map.erase(it++)或者it = map.erase(it);来实现迭代删除
但是在hash_map中

iterator ...