摘要:
I read How to keep thinking on a Saturday afternoon, and parts of it felt very similar to my own recent work. When the author describes skimming piles 阅读全文
摘要:
一些已知的情况 在Golang语言中,一个变量赋值/使用前,需要声明变量的类型。例如: var a int a = 10 fmt.Printf("%d\n", a) 使用另一种形式:=也可以对变量进行隐式的声明。例如: a := 10 fmt.Printf("%d\", a) 对于一个变量,可以赋值 阅读全文