初學GO,time包裏sleep是最經常使用,今天忽然看到一個time.after,特記錄time.after用法筆記以下:函數
首先是time包裏的定義ui
// After waits for the duration to elapse and then sends the current time // on the returned channel. // It is equivalent to NewTimer(d).C. // The underlying Timer is not recovered by the garbage collector // until the timer fires. If efficiency is a concern, use NewTimer // instead and call Timer.Stop if the timer is no longer needed. func After(d Duration) <-chan Time { return NewTimer(d).C }
直譯就是: spa
等待參數duration時間後,向返回的chan裏面寫入當前時間。blog
和NewTimer(d).C效果同樣ci
直到計時器觸發,垃圾回收器纔會恢復基礎計時器。it
若是擔憂效率問題, 請改用 NewTimer, 而後調用計時器. 不用了就中止計時器。io
解釋一下,是什麼意思呢?class
就是調用time.After(duration),此函數立刻返回,返回一個time.Time類型的Chan,不阻塞。效率
後面你該作什麼作什麼,不影響。到了duration時間後,自動塞一個當前時間進去。import
你能夠阻塞的等待,或者晚點再取。
由於底層是用NewTimer實現的,因此若是考慮到效率低,能夠直接本身調用NewTimer。
package main import ( "time" "fmt" ) func main() { tchan := time.After(time.Second*3) fmt.Printf("tchan type=%T\n",tchan) fmt.Println("mark 1") fmt.Println("tchan=",<-tchan) fmt.Println("mark 2") }
上面的例子運行結果以下
tchan type=<-chan time.Time
mark 1
tchan= 2018-03-15 09:38:51.023106 +0800 CST m=+3.015805601
mark 2
首先瞬間打印出前兩行,而後等待3S,打印後後兩行。