常量的定义格式:const identifier [type] = value
例如:
const Pi = 3.14159
在 Go 语言中,你可以省略类型说明符 [type]。
显式类型定义: const b string = "abc"
隐式类型定义:const b = "abc"
常量的定义格式:const identifier [type] = value
例如:
const Pi = 3.14159
在 Go 语言中,你可以省略类型说明符 [type]。
显式类型定义: const b string = "abc"
隐式类型定义:const b = "abc"
本文标题:4.3 常量
本文链接:https://www.haomeiwen.com/subject/curflqtx.html
网友评论