怎麼實現名稱相同,引數不同的多個介面

lifei6671發表於2017-06-18

golang 中的介面是隱式實現的,如果我有多個介面,介面中的方法名都一樣,但是引數不同。如何讓一個 struct 去實現這些介面呢? 例如:

type Interface1 interface{
    send(t,p string) error
}
type Interface2 interface{
    send(p string)(error,book)
}

這兩個介面怎麼去實現呢?

更多原創文章乾貨分享,請關注公眾號
  • 怎麼實現名稱相同,引數不同的多個介面
  • 加微信實戰群請加微信(註明:實戰群):gocnio

相關文章