¿Por qué no persisten los cambios realizados en una estructura a través de un método?
Estoy tratando de entender por qué el siguiente código de prueba no funciona como se esperaba:
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"
}
Esto imprimiría:
"1"
"0"
Significa quesomeStrings
Aparentemente es modificado ... y luego no lo es.
¿Alguien sabe cuál podría ser el problema?