我正在参加巡回赛,我对 4/27 感到困惑(https://tour.golang.org/moretypes/4)
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
v := Vertex{1, 2}
p := &v
p.X = 1e9 // <- this line does not produce a type error
fmt.Println(v) // {1000000000 2} implicite conversion of int to float?
}
我希望在 JavaScript 中做到这一点,而不是在强类型语言中。我一定错过了一些基本的东西。
BIG阳
鸿蒙传说
米脂
相关分类