实例
type Retiever interface{ Get(url string) string } func download(r Retiever) string { return r.Get("123") }