mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-23 04:16:02 +03:00
8 lines
249 B
Markdown
8 lines
249 B
Markdown
|
# 中介者模式
|
||
|
|
||
|
中介者模式封装对象之间互交,使依赖变的简单,并且使复杂互交简单化,封装在中介者中。
|
||
|
|
||
|
例子中的中介者使用单例模式生成中介者。
|
||
|
|
||
|
中介者的change使用switch判断类型。
|