网站首页 > 技术文章 正文
a1 := 15
// int 转 string
s1 := strconv.Itoa(a1)
// int 转 string
s2 := fmt.Sprintf("%d", a1)
var a2 int64 = 10
// int64 转 string
s3 := strconv.FormatInt(a2, 10)
// string 转 int
a3, _ := strconv.Atoi(s1)
// string 转 int64
a4, _ := strconv.ParseInt(s2, 10, 64)
// float64 转 int64
var a5 float64 = 1.5
a6 := int64(a5)
// float64 转 int
a7 := int(a5)
// float64 转 string,如果是float32,则后面就改成32
s5 := strconv.FormatFloat(a5, 'E', -1, 64)
// string 转 float64 32位同样更改其中的参数即可
a8, _ := strconv.ParseFloat(s5, 64)
// 有小数点的字符串转int64 如 '123.000' 转为123
// 先字符串转float64。再 float64 转int64
var aStr = "123.000"
aFloat64 := Fatof64(aStr)
aInt64 := Int64(aFloat64)
//! 字符串转float64
func Fatof64(s string) float64 {
num, _ := strconv.ParseFloat(s, 64)
return num
}
猜你喜欢
- 2025-03-26 sqlserver数据库中的类型转换(sql类型转化)
- 2025-03-26 Java web后端转Java游戏后端(java转web前端)
- 2025-03-26 c语言数据类型与变量详解(c语言的数据类型及其定义方法)
- 2025-03-26 西门子SCL高级语言之数据转换介绍
- 2025-03-26 三菱——转换指令(三菱转移指令怎么写)
- 2025-03-26 C语言堆栈应用之逆波兰法表达式求值
- 2025-03-26 C#中实现byte数组与其他数据类型之间相互转换的通用方法
- 2025-03-26 6.4 数据类型转换(数据类型转换的规则是什么)
- 2025-03-26 Python常见数据类型转换(python数据类型转换规则)
- 2025-03-26 三菱PLC中常见的数据类型转换(三菱plc转换后再怎么编辑)
- 最近发表
- 标签列表
-
- cmd/c (57)
- c++中::是什么意思 (57)
- sqlset (59)
- ps可以打开pdf格式吗 (58)
- phprequire_once (61)
- localstorage.removeitem (74)
- routermode (59)
- vector线程安全吗 (70)
- & (66)
- java (73)
- org.redisson (64)
- log.warn (60)
- cannotinstantiatethetype (62)
- js数组插入 (83)
- resttemplateokhttp (59)
- gormwherein (64)
- linux删除一个文件夹 (65)
- mac安装java (72)
- reader.onload (61)
- outofmemoryerror是什么意思 (64)
- flask文件上传 (63)
- eacces (67)
- 查看mysql是否启动 (70)
- java是值传递还是引用传递 (58)
- 无效的列索引 (74)