Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 165 Bytes

File metadata and controls

11 lines (8 loc) · 165 Bytes

6.11 计算函数执行时间

使用time包可以获取时间并进行计算。

start := time.Now()
//...
end := time.Now()
delta := end.Sub(start)