多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] 包strconv实现转换,从基本的数据类型的字符串表示。 ## Itoa 将 int 类型转换 string 类型 ```go package main import ( "fmt" "strconv" ) func main() { age := 18 str := strconv.Itoa(age) fmt.Printf("type: %T, value: %#v\n", str, str) } // 运行结果 // type: string, value: "18" ``` ## Atoi 将 string 类型转换成 int 类型 ```go package main import ( "fmt" "strconv" ) func main() { str := "18" age, err := strconv.Atoi(str) if err != nil { panic(err) } fmt.Printf("type: %T, value: %#v\n", age, age) } // 运行结果 // type: int, value: 18 ```