golang 类型转换

前端之家收集整理的这篇文章主要介绍了golang 类型转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

仅作记录,以便以后用到时查看方便。

字符串与整形:

//string to 10进制int64 
i,err := strconv.ParseInt(string,10,64)

//int64 to string
fmt.Sprintf("%d",int64)//我一般用这种方式
s := strconv.FormatInt(int64,10)//查找资料后得知这种方式比较正规

//string to int
i,err := strconv.Atoi(string)

//int to string
s := strconv.Itoa(int)
原文链接:https://www.f2er.com/go/190290.html

猜你在找的Go相关文章