go-pattern-examples/structure/02_adapter/README.md

8 lines
347 B
Markdown
Raw Normal View History

2020-04-21 17:50:21 +03:00
# 适配器模式
适配器模式用于转换一种接口适配另一种接口。
实际使用中Adaptee一般为接口并且使用工厂函数生成实例。
在Adapter中匿名组合Adaptee接口所以Adapter类也拥有SpecificRequest实例方法又因为Go语言中非入侵式接口特征其实Adapter也适配Adaptee接口。