golang 字符串与int类型转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang 字符串与int类型转换相关的知识,希望对你有一定的参考价值。

一、字符串转int
func Atoi(s string) (int, error)

案例:
技术分享图片
执行结果:
[email protected]  ~/Documents/project/src/test  go build int_string.go
[email protected]  ~/Documents/project/src/test  ./int_string
int, 100

二、int转字符串
func Itoa(i int) string

技术分享图片

执行结果:
[email protected]  ~/Documents/project/src/test  go build int_string.go
[email protected]  ~/Documents/project/src/test  ./int_string
string,100

以上是关于golang 字符串与int类型转换的主要内容,如果未能解决你的问题,请参考以下文章

Golang常见类型转换

golang类型转换小总结

Golang 类型转换

Golang 类型转换整理

Golang 泛型实现类型转换

Golang 泛型实现类型转换