In std::list, does the iterator point to a specific node or a position on the list?

后端 未结 0 1308
盖世英雄少女心
盖世英雄少女心 2020-12-30 09:18

So if I\'m writing

list temp;
temp.push_front(3);
list::iterator it=temp.begin();
temp.push_front(5);
temp.erase(it);

I

相关标签:
回答
  • 消灭零回复
提交回复
热议问题