为什么打印出来的时间是一样的,精确到纳秒级别了

miaozilong · · 873 次点击
![image.png](https://static.studygolang.com/200607/a50d6d6741abfca688b08a8b9e8e1925.png)
#4
更多评论
![image.png](https://static.studygolang.com/200607/bbf5e29bc905db7af5816b09460105b8.png) 原来是now定义的位置写错了 哈哈
#1
func main() { MAX := 2 for i := 0; i < MAX; i++ { if i == 0 || i == MAX-1 { now := time.Now() log.Println(now.Format(time.StampNano)) } } } 够了
#2