Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 562 Bytes

File metadata and controls

28 lines (21 loc) · 562 Bytes

2.2 结构体上的函数

我们可以将一个方法和一个结构体关联:

type Saiyan struct {
	Name string
	Power int
}

func (s *Saiyan) Super() {
	s.Power += 10000
}

在上面的代码中,我们可以说类型*SaiyanSuper方法的接收者。可以向下面代码一样调用Super:

goku := &Saiyan{"Goku", 9001}
goku.Super()
fmt.Println(goku.Power) // 将打印:19001

链接