谷歌搜索技巧

1.使用标签

每次搜索时你都会看到图片、视频、新闻、地图等标签,使用标签可以筛选相关的内容,帮助你更好的找到你想要的内容。

Read More

go匿名函数使用外部变量

defer 的匿名函数中引用了外部变量a,a 的值在for循环结束最后会被设为”mouse”, 所以defer中的输出都为”mouse”

1
2
3
4
5
6
7
8
9
10
11
12
13
func main() {
animals := []string{"dog", "cat", "mouse"}
for _, a := range animals{
defer func() {
fmt.Println(a)
}()
}
}

// output:
// mouse
// mouse
// mouse

Read More