Go 系列教程 —— 5. 常量

guoxiaopang ·
package main func main() { const trueConst = true type myBool bool var defaultBool = trueConst // 允许 // 应该是不允许的 var customBool myBool = trueConst // 允许 defaultBool = customBool // 不允许 }
#11
更多评论
const hello = "Hello" fmt.Printf("type %T value %v", hello, hello) 输出: type string value Hello 常量仍然没有类型怎么理解?
#1
文中提到了: > 无类型的常量有一个与它们相关联的默认类型,并且当且仅当一行代码需要时才提供它
#2