美文网首页
GO - 2(time)

GO - 2(time)

作者: 魔主三生 | 来源:发表于2018-05-07 15:53 被阅读0次

GO 中的time 格式化时,很变态使用的是一个准确的时间字符串,有人说这是Go产生的时间

2006-01-02 15:04:05 。必须按照这个串格式化,才能正确。

go 中的毫秒数据,都是取得纳秒后计算获取,没有java 的方便

以下是GO 中 经常使用的 时间类型,根据标准库整理。在此非常感谢标准库的翻译。

https://studygolang.com/pkgdoc

package main

import (

"fmt"

"time"

)

func main() {

fmt.Println("当前时间字符串 time.Now() =", time.Now())

fmt.Println("当前时间秒 time.Now().Unix() =", time.Now().Unix())

fmt.Println("当前时间纳秒 time.Now().UnixNano() = ", time.Now().UnixNano())

fmt.Println("当前时间毫秒 time.Now().UnixNano()/1e6 = ", time.Now().UnixNano()/1e6)

fmt.Println("当前时间秒 time.Now().UnixNano/1e9 = ", time.Now().UnixNano()/1e9)

fmt.Println("当前时间格式化 time.Now.Format('2006-01-02 15:04:05')", time.Now().Format("2006-01-02 15:04:05"))

fmt.Println("format", time.Now().Format("2006-01-03 15:04:05"))

str_time := time.Unix(time.Now().Unix(), 0).Format("2006-01-02 15:04:05")

fmt.Println("timestamp->string", str_time)

the_time, err := time.Parse("2006-01-02 15:04:05", str_time)

if err == nil {

unix_time := the_time.Unix()

fmt.Println("str->timestamp", unix_time)

}

fmt.Println("当前月中的第几日 ", time.Now().Day())

fmt.Println("当前年中的第几日 ", time.Now().YearDay())

fmt.Println("一周中的周几 ", time.Now().Weekday())

seconds := 10

fmt.Println("时间段 10s ", time.Duration(seconds)*time.Second)

fmt.Println("当前时间添加 12 小时", time.Now().Add(time.Duration(12)*time.Hour))

t1 := time.Now()

time.Sleep(time.Second)

fmt.Println("两个时间点相减 time.Sub", time.Now().Sub(t1))

fmt.Println("time location", time.Now().Location())

fmt.Println("time Second:", time.Now().Second())

fmt.Println("time string", time.Now().String())

name, offset := time.Now().Zone()

fmt.Println(" 时区信息 name,offset = ", name, " ", offset)

//time round

t := time.Now()

round := []time.Duration{

time.Nanosecond,

time.Microsecond,

time.Millisecond,

time.Second,

time.Minute,

time.Hour,

}

for _, d := range round {

fmt.Printf("t.Round(%s) = %s \n", d, t.Round(d))

}

}

源代码可以参见:

https://gitee.com/emperors/go-learn

相关文章

  • GO - 2(time)

    GO中的time格式化时,很变态使用的是一个准确的时间字符串,有人说这是Go产生的时间 2006-01-02 15...

  • Go Time an Online Golang Date Fo

    title: "Go Time an Online Golang Date Format Tool"date: 2...

  • Day1

    It is time to go to bed!/get up It is time for dinner!/cl...

  • The Lost Dear 2

    The time was late and it was time to go home. She went in...

  • go time 包练习

    go time 包练习

  • 20119.10.6

    Time go.fast.

  • Go time

    Go time Go中提供了很多关于时间处理的内容,这篇文章来主讲讲解下时间上的内容。 最外层可以直接使用的方法 ...

  • 2019-02-08

    起床 1.wake up,you sleepyhead. 2.get up,please!time to go t...

  • 摆脱像鬼魂一样的迷茫,毕业季的你,还好吗

    Cause it's time to go hard or go home One way up no way o...

  • 47.Goland

    告别GOPATH,快速使用 go mod(Golang包管理工具) /***@Time : {TIME}*@A...

网友评论

      本文标题:GO - 2(time)

      本文链接:https://www.haomeiwen.com/subject/bzcvrftx.html