GeekBand_STL_Iterator
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GeekBand_STL_Iterator相关的知识,希望对你有一定的参考价值。
Iterators设计将Containers与Algorithms彼此独立,降低耦合性,使两者相互正交.而Iterator作为两者的中间层使得即使其中一方接口改变也能通过改写Iterators转换数据从而使其更改和使用更加安全和方便.
Iterators是一种smart pointer,对operator*和operator->都进行了overloading,使用与指针相似,并重载了operator++与operator--用来遍历容器;
以上是关于GeekBand_STL_Iterator的主要内容,如果未能解决你的问题,请参考以下文章