摘要: 1 package main 2 3 import ( 4 "fmt" 5 ) 6 7 type Intf interface { 8 process() 9 } 10 11 type MsgBase struct { 12 id int 13 } 14 15 func (p *MsgBase) p 阅读全文
posted @ 2019-07-02 00:53 NorseLZJ 阅读(202) 评论(0) 推荐(0) 编辑