方法表达式

type Student struct {
id int
name string
}

func (s Student) SkillValue() {
fmt.Printf("值类型函数: %p, %v\n", &s, s)
}

sFunc2 := Student.SkillValue //注意这里直接使用 结构体名称.方法
sFunc2(s) //显示的把接收者Student传递过去


https://www.cnblogs.com/phpper/p/12370086.html



Category golang