Golang设计模式之代理模式 Jackey Golang 2020-12-30 2,164 次浏览 Golang, 代理模式, 设计模式 package main import "fmt" type Subject interface { Do() string // 实际业务, 业务系统,检查是否欠费,检查密码是否正确 } type RealSubject struct { } func (sb RealSubject) Do() string { return "智...