场景 在 Go 语言中,常量分为有类型常量和无类型常量。 // 有类型常量 const VERSioN string = "v1.0.0" // 无类型常量 const RELEA
在 Go 语言中,常量分为有类型常量和无类型常量。
// 有类型常量
const VERSioN string = "v1.0.0"
// 无类型常量
const RELEASE = 3
当你把有无类型的常量,赋值给一个变量的时候,无类型的常量会被隐式的转化成对应的类型。
package main
import "fmt"
func main() {
const RELEASE = 3
var x int16 = RELEASE
var y int32 = RELEASE
fmt.Printf("type: %T \n", x) //type: int16
fmt.Printf("type: %T \n", y) //type: int32
}
可要是有类型常量,不就会进行转换,在赋值的时候,类型检查就不会通过,从而直接报错。
package main
import "fmt"
func main() {
const RELEASE int8 = 3
var x int16 = RELEASE //cannot use RELEASE (type int8) as type int16 in assignment
var y int32 = RELEASE //cannot use RELEASE (type int8) as type int32 in assignment
fmt.Printf("type: %T \n", x)
fmt.Printf("type: %T \n", y)
}
解决的方法是进行显式的转换。
package main
import "fmt"
func main() {
const RELEASE int8 = 3
var x int16 = int16(RELEASE)
var y int32 = int32(RELEASE)
fmt.Printf("type: %T \n", x) // type: int16
fmt.Printf("type: %T \n", y) // type: int32
}
到此这篇关于golang有类型常量和无类型常量的区别的文章就介绍到这了,更多相关Golang有类型常量和无类型常量内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: Golang有类型常量和无类型常量的区别
本文链接: https://lsjlt.com/news/203074.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-05
2024-04-05
2024-04-05
2024-04-04
2024-04-05
2024-04-05
2024-04-05
2024-04-05
2024-04-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0