摘要: 方法的接收者 package main import ( "fmt" ) type Person struct { Name string Age int } func (p Person) walking(){ fmt.Println("我是值类型方法") fmt.Printf("%s, 今年%d 阅读全文
posted @ 2022-12-26 14:49 我在路上回头看 阅读(268) 评论(0) 推荐(0) 编辑