mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-23 20:36:02 +03:00
8 lines
285 B
Markdown
8 lines
285 B
Markdown
|
# 桥接模式
|
||
|
|
||
|
桥接模式分离抽象部分和实现部分。使得两部分独立扩展。
|
||
|
|
||
|
桥接模式类似于策略模式,区别在于策略模式封装一系列算法使得算法可以互相替换。
|
||
|
|
||
|
策略模式使抽象部分和实现部分分离,可以独立变化。
|