【golang】strconv.Atoi 和 strconv.Itoa

简介: 【golang】strconv.Atoi 和 strconv.Itoa

strconv.Atoi 和 strconv.Itoa 是 Go 语言中的两个函数,用于在字符串和整数之间进行转换。


strconv.Atoi 函数接受一个字符串参数,返回一个整数值和一个错误值。如果字符串参数不能转换为整数,错误值不为 nil。


strconv.Itoa 函数接受一个整数参数,返回一个字符串值。


这两个函数可以用于处理用户输入或输出数据。


今天重点记录的是strconv.Atoi 的全称,即:ASCII to integer。不要小瞧全称,我们在记忆API的时候可以通过全称来辅助记忆的!

目录
相关文章
|
7月前
|
Go
Go string bytes、strings、strconv和unicode包相关方法
Go string bytes、strings、strconv和unicode包相关方法
55 0
|
4月前
|
安全 Go
go 中的 fmt 占位符
go 中的 fmt 占位符
|
4月前
|
存储 Go 索引
Golang 中的 String、rune 和 byte
Golang 中的 String、rune 和 byte
|
4月前
|
Go
【go笔记】标准库-strconv
【go笔记】标准库-strconv
|
6月前
|
存储 Go API
Go 语言基础之常用包【flag、time、strconv、io】(2)
Go 语言基础之常用包【flag、time、strconv、io】
|
6月前
|
存储 Unix Go
Go 语言基础之常用包【flag、time、strconv、io】(1)
Go 语言基础之常用包【flag、time、strconv、io】
itoa随手记(itoa是什么,itoa怎么用)
itoa随手记(itoa是什么,itoa怎么用)
135 0
|
Go 索引
Go 中的格式化字符串`fmt.Sprintf()` 和 `fmt.Printf()`
在 Go 中,可以使用 fmt.Sprintf() 和 fmt.Printf() 函数来格式化字符串,这两个函数类似于 C 语言中的 scanf 和 printf 函数。本文介绍了五个最常用的格式化动词和参数索引的使用方法。
188 0
|
Go 数据格式
Go标准库 log | 文件操作 | strconv
Go标准库 log | 文件操作 | strconv
Go 编程 | 连载 06 - 基本数据类型转换(strconv)
Go 编程 | 连载 06 - 基本数据类型转换(strconv)
Go 编程 | 连载 06 - 基本数据类型转换(strconv)