add contents to iterator pattern

This commit is contained in:
Edward 2020-05-02 21:27:29 +08:00
parent 6082b070ed
commit 1aa5246e6d
5 changed files with 8 additions and 5 deletions

View File

@ -38,9 +38,9 @@
## 行为型模式
+ [x] [中介者模式(Mediator)](./behavior/08_mediator)
+ [ ] [观察者模式(Observer)](./behavior/10_observer)
+ [x] [观察者模式(Observer)](./behavior/10_observer)
+ [ ] [命令模式(Command)](./behavior/11_command)
+ [ ] [迭代器模式(Iterator)](./behavior/12_iterator)
+ [ ] [迭代器模式(Iterator)](./behavior/04_iterator)
+ [ ] [模板方法模式(Template Method)](./behavior/14_template_method)
+ [x] [策略模式(Strategy)](./behavior/15_strategy)
+ [ ] [状态模式(State)](./behavior/behavior16_state)

View File

@ -0,0 +1,6 @@
# 送代器模式
送代器模式主要设计在于实现一组实现通用迭代行为的迭代接口,对外提供一致性的迭代访问机制,而不必关心内部的数据类型和结构,目的是对集合类或者类集合类数据提供一致性的访问方式.
迭代器模式在各种语言中都有很深入,很广泛的应用,迭代器模式就是,对这种模式的进一步应用。

View File

@ -1,3 +0,0 @@
# 送代器模式
送代器模式主要设计在于实现一组实现通用迭代行为的迭代接口,对外提供一致性的迭代访问机制,而不必关心内部的数据类型和结构。