摘要: 方法集定义了接口的接受规则。 package main import "fmt" type notifier interface { notify() } type user struct { name string email string } func (u *user) notify() { 阅读全文
posted @ 2018-10-22 14:08 邱明成 阅读(1004) 评论(0) 推荐(0) 编辑