mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-22 20:06:02 +03:00
6 lines
250 B
Markdown
6 lines
250 B
Markdown
|
# 组合模式
|
||
|
|
||
|
组合模式统一对象和对象集,使得使用相同接口使用对象和对象集。
|
||
|
|
||
|
组合模式常用于树状结构,用于统一叶子节点和树节点的访问,并且可以用于应用某一操作到所有子节点。
|