mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-23 12:26:03 +03:00
8 lines
347 B
Markdown
8 lines
347 B
Markdown
# 适配器模式
|
||
|
||
适配器模式用于转换一种接口适配另一种接口。
|
||
|
||
实际使用中Adaptee一般为接口,并且使用工厂函数生成实例。
|
||
|
||
在Adapter中匿名组合Adaptee接口,所以Adapter类也拥有SpecificRequest实例方法,又因为Go语言中非入侵式接口特征,其实Adapter也适配Adaptee接口。
|