美文网首页
4.3 常量

4.3 常量

作者: 曲镇 | 来源:发表于2018-12-25 14:21 被阅读0次

常量的定义格式: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