This page looks best with JavaScript enabled
Golang中string和int类型相互转换
Golang中string和int类型相互转换
string 转成 int
string 转成 int:
1
| int, err := strconv.Atoi(string)
|
string 转成 int64:
1
| int64, err := strconv.ParseInt(string, 10, 64)
|
string 转成 uint64:
1
| uint64, err := strconv.ParseUint(string, 10, 64)
|
int 转成 string
int 转成 string:
1
| string := strconv.Itoa(int)
|
int64 转成 string:
1
| string := strconv.FormatInt(int64,10)
|
uint64 转成 string:
1
| string := strconv.FormatUint(uint64,10)
|
数字类型
1
2
3
4
5
6
7
8
| 1 uint8 : 无符号 8 位整型 (0 到 255)
2 uint16 : 无符号 16 位整型 (0 到 65535)
3 uint32 : 无符号 32 位整型 (0 到 4294967295)
4 uint64 : 无符号 64 位整型 (0 到 18446744073709551615)
5 int8 : 有符号 8 位整型 (-128 到 127)
6 int16 : 有符号 16 位整型 (-32768 到 32767)
7 int32 : 有符号 32 位整型 (-2147483648 到 2147483647)
8 int64 : 有符号 64 位整型 (-9223372036854775808 到 9223372036854775807)
|
浮点型
1
2
3
4
| 1 float32 IEEE-754 32位浮点型数
2 float64 IEEE-754 64位浮点型数
3 complex64 32 位实数和虚数
4 complex128 64 位实数和虚数
|
其他数字类型
1
2
3
4
5
| 1 byte 类似 uint8
2 rune 类似 int32
3 uint 32 或 64 位
4 int 与 uint 一样大小
5 uintptr 无符号整型,用于存放一个指针
|
References
WRITTEN BY
WYT
Web Developer