Dlaczego nie zachodzą zmiany w strukturze za pomocą metody?

Próbuję zrozumieć, dlaczego następujący kod testowy nie działa zgodnie z oczekiwaniami:

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"
}

To by się wydrukowało:

"1"
"0"

To znaczysomeStrings jest najwyraźniej zmodyfikowany ... a potem nie.

Ktoś wie, co może być problemem?

questionAnswers(3)

yourAnswerToTheQuestion