package main
func main() {
x := []int{7, 8, 9}
y := [3]*int{}
for i, v := range x {
defer func() {
print(v)
}()
y[i] = &i
}
print(*y[0], *y[1], *y[2], " ")
}
Choices:
Answer: 222 999
Run it on Go play.
Key points:
i
and v
)
are shared by all loop steps. In other words, each iteration variable only has
one instance during the execution of the loop.
That means all the elements of y
store the same address (of the value v
).
i
is set as 2
,
and the variable v
is set as 9
.
Different from the above program, the following one prints 012 987
.
package main
func main() {
x := []int{7, 8, 9}
y := [3]*int{}
for i, v := range x {
defer print(v)
i := i
y[i] = &i
}
print(*y[0], *y[1], *y[2], " ")
}
The Go 101 project is hosted on Github. Welcome to improve Go 101 articles by submitting corrections for all kinds of mistakes, such as typos, grammar errors, wording inaccuracies, description flaws, code bugs and broken links.
If you would like to learn some Go details and facts every serveral days, please follow Go 101's official Twitter account @go100and1.