1. 时间格式化
2006/1/02 15:04:05
这个时间必须固定不能更改,否则不能获取正确时间
package main import ( "fmt" "time" ) func main() { //格式化字符串 now := time.Now() //时间必须固定不能更改,否则不能获取正确时间 fmt.Println(now.Format("02/1/2006 15:04:05")) fmt.Println(now.Format("2006/1/02 15:04")) fmt.Println(now.Format("2006/1/02")) } //输出结果如下 07/4/2022 21:51:52 2022/4/07 21:51 2022/4/07
2. 示例
- 对获取的日期进行提取日期并判断是否为会员日
package main import ( "fmt" "strconv" "strings" "time" ) func main() { //格式化字符串 now := time.Now() //时间必须固定 times := now.Format("2006/1/02 15:04:05") a := strings.Fields(times) fmt.Println(a[0]) fmt.Println(a[1]) b := strings.Split(a[0], "/") fmt.Println(b[2]) //判断是否为会员日,奇数为会员日,偶数为非会员日 c, _ := strconv.Atoi(b[2]) if c%2 != 0 { fmt.Println("会员日") } else { fmt.Println("非会员日") } } //输出结果如下 2022/4/07 22:07:42 07 会员日
- 统计程序执行时间,精确到微秒
package main import ( "fmt" "time" ) func main() { //使用时间戳统计时间 start := time.Now().UnixNano() sleepTime() end := time.Now().UnixNano() fmt.Printf("程序执行时间: %d", (end-start)/1000) } func sleepTime() { time.Sleep(time.Millisecond * 100) } //执行结果如下 程序执行时间: 113650