这是我的代码:packagemainimport("strconv""fmt")funcmain(){t:=strconv.Itoa64(1234)fmt.Println(t)}问题:为什么会出现以下错误信息?command-line-arguments.\test.go:7:undefined:strconv.Itoa64[Finishedin0.2swithexitcode2] 最佳答案 这是因为Itoa64不是strconv包中的函数名。看起来你真的很想要。t:=strconv.FormatInt(1234,10)见http: