Created
November 11, 2019 18:11
-
-
Save tangx/306b904d4da157e47f1a295148c6a9d3 to your computer and use it in GitHub Desktop.
time 的常用用法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func Test_time(t *testing.T) { | |
start := time.Now() | |
time.Sleep(1 * time.Second) | |
sec := time.Since(start).Seconds() | |
fmt.Println(sec) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment