我試圖理解爲什麼如預期下面的測試代碼是不工作:爲什麼不通過方法對結構進行更改仍然存在?
package main
import (
"fmt"
"strings"
)
type Test struct {
someStrings []string
}
func (this Test) AddString(s string) {
this.someStrings = append(this.someStrings, s)
this.Count() // will print "1"
}
func (this Test) Count() {
fmt.Println(len(this.someStrings))
}
func main() {
var test Test
test.AddString("testing")
test.Count() // will print "0"
}
這將打印:
"1"
"0"
意思就是說someStrings
顯然修改...然後它不是。
有人知道可能是什麼問題?