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类型转换的主要内容,如果未能解决你的问题,请参考以下文章