标签: go int
在Golang中
为什么 var y = int(0.1)出错 但是x := 0.1; y := int(x)可以吗?
var y = int(0.1)
x := 0.1; y := int(x)