变量作用域的疑惑

wxb · · 680 次点击
https://golang.google.cn/ref/spec#Short_variable_declarations 看语言规范就知道了 `=` 表示赋值 `:=` 表示分配且赋值 https://golang.google.cn/doc/faq#declarations_backwards ``` var a uint64 = 1 // has the same effect as a := uint64(1) ```
#1