[关闭]
@LIUHUAN 2017-11-13T17:34:51.000000Z 字数 352 阅读 1396

Go 计算程序运行时间

Go


1.计算代码块的运行时间

  1. start := time.Now()
  2. //some func or operation
  3. cost := time.Since(start)
  4. fmt.Printf("cost=[%s]",cost)

2.计算函数的运行时间

  1. func compute() {
  2. start := time.Now()
  3. defer func() {
  4. cost := time.Since(start)
  5. fmt.Println("cost=", cost)
  6. }()
  7. // some computation
  8. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注