go 类型转换

interface{}、断言与类型转换

这篇文章里面的interface{}转换,转换示例非常清楚

  • (https://www.cnblogs.com/xiaopipi/p/4889212.html)

整型和字节数组之间的转换

int64 和[]byte之间的转换

  • https://studygolang.com/topics/22

字符串和整型的转换

strconv.Itoa(i) 和 strconv.Atoi(s)

  • https://blog.csdn.net/bobodem/article/details/80182096

类型转换

a.() 和 a(b)的区别

  • https://www.cnblogs.com/zrtqsk/p/4157350.html

你可能感兴趣的:(go 类型转换)