时间常量
// 1. time 类型
//获取当前时间
now := time.Now()
fmt.Printf("now=%v now type=%T\n",now,now)
//now=2021-11-26 13:01:42.1144451 +0800 CST m=+0.003959701
//now type=time.Time
//获取其他日期信息
fmt.Println(now.Year()) //2021
fmt.Println(now.Month()) //November
fmt.Println(int(now.Month())) //11
fmt.Println(now.Day()) //26
fmt.Println(now.Hour()) //14
fmt.Println(now.Minute()) //51
fmt.Println(now.Second()) //41
// 2. 格式化日期时间
//各个数字是固定的,必须这样写 :1月2号下午3点4分5秒 06年
fmt.Println(now.Format("2006/01/02 15:04:05")) //2021/11/26 15:05:00
fmt.Println(now.Format("2006-01-02-15-04-05")) //2021-11-26-15-05-00
fmt.Println(now.Format("2006*01*02")) //2021*11*26
// 3. 时间常量 时间可以用乘法,不能用除法
for i:=0;i<3 ;i++ {
time.Sleep(3*time.Second)
fmt.Println("yes")
}// 每隔3s输出一个yes
// 4. 时间戳Unix \ UnixNano 返回子1970,1,1到时间点t所经历的秒(纳秒)数
now.Unix()
now.UnixNano()