摘要: package main import ( "log" "reflect" ) type AT interface { A() B() C() D() E() } type at struct { } func (a *at) A(S string) { log.Println("A") } fun 阅读全文
posted @ 2020-06-09 14:58 svji 阅读(522) 评论(0) 推荐(0) 编辑