Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的代码:
package main import ( "strconv" "fmt" ) func main() { t := strconv.Itoa64(1234) fmt.Println(t) }
问题:
为什么会导致以下错误信息?
命令行参数 .\test.go:7: undefined: strconv.Itoa64 [在 0.2 秒内完成,退出代码为 2]
这是因为 Itoa64 不是 strconv 包中函数的名称。看起来你真的很想要。
t := strconv.FormatInt(1234, 10)
见http://golang.org/pkg/strconv/#FormatInt
您可以像这样简单地转换
func main() { t := int64(1234) fmt.Println(t) }