Golang 日期格式化

格式字符:

const AcDateFormat string = "2006-01-02 15:04:05"

格式助记:

2006年 1月2日 3点4分5秒

下一个凌晨时间的计算:

timer := time.NewTimer(time.Second * 3)
for true {
log.Printf("创建索引-->Start")
<-t.C
now := time.Now()
next := now.Add(time.Hour * 24)// 主要此段代码
next = time.Date(next.Year(), next.Month(), next.Day(), 0, 0, 0, 0, next.Location())
duration := next.Sub(now)
log.Printf("下一个零点->%v -> 相差->%v -> \n", next.Format(AcDateFormat), duration)
t.Reset(duration)
}