golang int 转 16进制字符串

i := int64(32)
s := strconv.FormatInt(i, 16)
println(s)

 

你可能感兴趣的:(golang)