Yami Odymel https://invade.tw/ says to OwO 你那種則是: package main import ( "fmt" ) type Example struct { Number int } func (e *Example) Add(){ e.Number++ } func main() { ex := Example{1} ex.Add() fmt.Println(ex) } -- >> {2}