Go 一些简要的实用 代码片段

前端之家收集整理的这篇文章主要介绍了Go 一些简要的实用 代码片段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

当前时间 + 常规格式化,引用 “time”
ts := time.Now().Format("2006-01-02 15:04:05.000") // 2017-10-26 17:32:57.871
字符串转时间
tx := time.Parse("2006-01-02 15:04:05.000","2017-10-26 18:02:01.234")//fmt.Println( tx.Nanosecond() )=234000000

数值转换字符串
strconv.Itoa(5) //转int一类
strconv.FormatFloat(254.109,'f',-1,64) //转浮点数一类
字符串转数字
strconv.ParseFloat(s string,bitSize int)(f float64,err error)
strconv.Atoi(s string) (i int,err error)

类型断言(类型判断) x 是 接口 interface() v,ok:=x.([]int) // x.(uint),x.(float64) 等等 if ok{ ... }

原文链接:https://www.f2er.com/go/187792.html

猜你在找的Go相关文章