6.11 计算函数执行时间 使用time包可以获取时间并进行计算。 start := time.Now() //... end := time.Now() delta := end.Sub(start)