2020
10-08
10-08
Go 语言中关于接口的三个
我的在线博客:http://golang.iswbm.com我的Github:github.com/iswbm/GolangCodingTime 1.对方法的调用限制接口是一组固定的方法集,由于静态类型的限制,接口变量有时仅能调用其中特定的一些方法。请看下面这段代码packagemainimport"fmt"typePhoneinterface{call()}typeiPhonestruct{namestring}func(phoneiPhone)call(){fmt.Println("Hello,iPhone.")}func(phoneiPhone)send_wechat(){fmt.Println(...
继续阅读 >