What are Iterators, C++?

前端 未结 5 386
孤城傲影
孤城傲影 2020-12-16 12:09

What are Iterators in C++?

5条回答
  •  隐瞒了意图╮
    2020-12-16 12:50

    They're a representation of a position within a sequence. On their own they're little more than curiosities, but when dereferenced they result in the value contained within the sequence at the position it represents.

提交回复
热议问题