Golang设计模式之适配器模式 Jackey Golang 2020-12-30 2,219 次浏览 Golang, 设计模式, 适配器模式 package main import "fmt" // 适配器目标接口 type Target interface { Request(int, int) string } type Adapter struct { Adaptee } func NewAdapter(adaptee Adaptee) Target { return &Adapte...