如何将int转换为int64?

我试图在go中将整数转换为integer64,但我没有运气。有人知道这样做的简单方法吗?


ibeautiful
浏览 296回答 3
3回答

精慕HU

这可能很明显,但最简单:i64 := int64(23)

呼啦一阵风

i := 23i64 := int64(i)fmt.Printf("%T %T", i, i64) // to print the data types of i and i64
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go