Go:time

时间:Feb. 2, 2020 分类:

目录:

time

time模块提供了时间显示和测量相关功能

时间类型time.Time

package main

import "time"
import "fmt"

func main() {
    now := time.Now() //获取当前时间
    fmt.Printf("current time:%v\n", now)

    year := now.Year()     //年
    month := now.Month()   //月
    day := now.Day()       //日
    hour := now.Hour()     //小时
    minute := now.Minute() //分钟
    second := now.Second() //秒
    fmt.Printf("%d-%02d-%02d %02d:%02d:%02d\n", year, month, day, hour, minute, second)
}

打印结果

current time:2020-02-05 00:16:35.413555752 +0800 CST m=+0.000286520
2020-02-05 00:16:35

时间戳

和其他语言一样打印从1970.1.1到现在的时间戳

package main

import "time"
import "fmt"

func main() {
        now := time.Now()            //获取当前时间
    timestamp1 := now.Unix()     //时间戳
    timestamp2 := now.UnixNano() //纳秒时间戳
    fmt.Printf("current timestamp1:%v\n", timestamp1)
    fmt.Printf("current timestamp2:%v\n", timestamp2)
}

打印结果

current timestamp1:1580833142
current timestamp2:1580833142588461383

也可以将时间戳转换为时间类型time.Time

package main

import "time"
import "fmt"

func main() {
        now := time.Unix(1580833142, 0) //获取当前时间
        fmt.Printf("current time:%v\n", now)

        year := now.Year()     //年
        month := now.Month()   //月
        day := now.Day()       //日
        hour := now.Hour()     //小时
        minute := now.Minute() //分钟
        second := now.Second() //秒
        fmt.Printf("%d-%02d-%02d %02d:%02d:%02d\n", year, month, day, hour, minute, second)
}

时间操作

时间间隔

time.Duration是time中的一个类型,代表一段时间间隔

定义的常量有

const (
    Nanosecond  Duration = 1
    Microsecond          = 1000 * Nanosecond   // 纳秒
    Millisecond          = 1000 * Microsecond  // 微秒
    Second               = 1000 * Millisecond  // 毫秒
    Minute               = 60 * Second
    Hour                 = 60 * Minute
)

Add

func main() {
    now := time.Now()
    later := now.Add(time.Hour) // 当前时间加1小时后的时间
    fmt.Println(later)
}

如果是减用Add(-time.Hour)来实现

Sub

获取两个时间的差值

func (t Time) Sub(u Time) Duration

Equal

比较时间是否相同,不会受时区影响,t==u这种受时区影响

func (t Time) Equal(u Time) bool

Before

判断一个时间是否在另一个时间点之前

func (t Time) Before(u Time) bool

同理有After

定时器

time.Tick(时间间隔),本质是个channel

func tickDemo() {
    ticker := time.Tick(time.Second) //定义一个1秒间隔的定时器
    for i := range ticker {
        fmt.Println(i)//每秒都会执行的任务
    }
}

时间格式化

Format方法,时间模板不是常见的Y-m-d H:M:S,而是Go的诞生时间2006年1月2号15点04分(记忆口诀为2006 1 2 3 4

如果想格式化为12小时方式,需指定PM

func formatDemo() {
    now := time.Now()
    // 格式化的模板为Go的出生时间2006年1月2号15点04分 Mon Jan
    // 24小时制
    fmt.Println(now.Format("2006-01-02 15:04:05.000 Mon Jan"))
    // 12小时制
    fmt.Println(now.Format("2006-01-02 03:04:05.000 PM Mon Jan"))
    fmt.Println(now.Format("2006/01/02 15:04"))
    fmt.Println(now.Format("15:04 2006/01/02"))
    fmt.Println(now.Format("2006/01/02"))
}

同理也可以解析回来

now := time.Now()
fmt.Println(now)
// 加载时区
loc, err := time.LoadLocation("Asia/Shanghai")
if err != nil {
    fmt.Println(err)
    return
}
// 按照指定时区和指定格式解析字符串时间
timeObj, err := time.ParseInLocation("2006/01/02 15:04:05", "2019/08/04 14:15:20", loc)
if err != nil {
    fmt.Println(err)
    return
}
fmt.Println(timeObj)
fmt.Println(timeObj.Sub(now))

等待

n := 5
time.Sleep(time.Duration(n) * time.Second)