看下面的程序
package main import "fmt" type Question struct { title string detail string } func (ques Question) Print() { fmt.Println(ques.title) } func (ques Question) Update2(title string) { ques.title = title } func (ques *Question) Update(title string) { ques.title = title } func main() { ques := Question{ title: "why", detail: "haha", } ques.Print() ques.Update("update?") ques.Print() ques.Update2("test?") ques.Print() }
打印结果是:
why update? update?
这说明go语言默认采用的是pass by value
如果想达到更新对象的目的,必须手工使用指针。
时间: 2024-10-24 09:46:19