#Go# 常用类型转换

Posted cinlap

tags:

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

#string 2 int
int, err := strconv.Atoi(string)

#string 2 int64
int64, err := strconv.ParseInt(string, 10, 64)

#int 2 string
string := strconv.Itoa(int)

#int64 2 string
string := strconv.FormatInt(int64, 10)

以上是关于#Go# 常用类型转换的主要内容,如果未能解决你的问题,请参考以下文章

Go语言开发(十六)Go语言常用标准库六

Go 语言 Strconv 库常用方法

js常用代码片段(更新中)

一文了解 Go 标准库 strconv:string 与其他基本数据类型的转换

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

Go语言标准库之strconv