golang int int64 string 转化
2021-11-03 本文已影响0人
小易哥学呀学
string 转 int
intN, err := strconv.Atoi(string)
string 转int64
s := "15"
// 字符串, 进制, 位
int64N, err := strconv.ParseInt(s, 10, 64) // 15
int 转 string
var n int
n = 15
str := strconv.Itoa(n) // 输出 "15"
//或
str1 := strconv.FormatInt(int64(n), 10) // 输出 "15"
int64 转成 string
var n int64
n = 15
str1 := strconv.FormatInt(n, 2) // 输出 "1111"
str2 := strconv.FormatInt(n, 10) // 输出 "15"