golang-interface
推荐阅读:Go Interface Source Code
Interface 概述Interface(接口)是 Go 语言类型系统的核心,它定义了对象的行为规范。Go 语言的接口采用隐式实现,只要类型实现了接口的所有方法,就认为该类型实现
2019-04-17