猿问
如何将int转换为int64?
我试图在go中将整数转换为integer64,但我没有运气。有人知道这样做的简单方法吗?
ibeautiful
浏览 296
回答 3
3回答
精慕HU
这可能很明显,但最简单:i64 := int64(23)
0
0
0
呼啦一阵风
i := 23i64 := int64(i)fmt.Printf("%T %T", i, i64) // to print the data types of i and i64
0
0
0
随时随地看视频
慕课网APP
相关分类
Go
我要回答