Skip to content

Instantly share code, notes, and snippets.

@tangx
Created November 11, 2019 18:11
Show Gist options
  • Save tangx/306b904d4da157e47f1a295148c6a9d3 to your computer and use it in GitHub Desktop.
Save tangx/306b904d4da157e47f1a295148c6a9d3 to your computer and use it in GitHub Desktop.
time 的常用用法
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