登录
gofloat
已收录文章:1篇
三天内
三天内
一周内
一月内
三月内
最新
最热
Golang
·
Go教程
| 1年前 |
String
·
int
·
gofloat
·
golang
Go语言string,int,int64 ,float之间类型转换方法
(1)int转string s := strconv.Itoa(i) 等价于s := strconv.FormatInt(int64(i), 10) (2)int64转string i := int64(123) s := strconv.FormatInt(i, 10) 第二个参数为基数,可选2~36 注:对于无符号整形,可以使用FormatUint(i uint64,
358
收藏