Golang interface{} 做爲函數參數和函數返回值例子

package main import ( "errors" "fmt" ) type item struct { Name string } func (i item) String() string { return fmt.Sprintf("item name:%v", i.Name) } type person struct { Name s
相關文章
相關標籤/搜索