写点什么

Go- 函数执行时间

用户头像
HelloBug
关注
发布于: 4 小时前
Go- 函数执行时间

Go 学习笔记,学习内容《Go入门指南》


主要介绍以下内容:

  • 函数执行时间


代码示例可以直接运行


package main
import ( "fmt" "time")
func main() { start := time.Now() fmt.Printf("Now time is %d\n", start)
func() { for a, i := 0, 0; i < 1e10 && a < 1e10; i++ { a = i } }()
end := time.Now() cost := end.Sub(start) fmt.Printf("Cost time is %d\n", cost) // 单位为纳秒}
复制代码


更多 Time 函数库使用请参考:time库

发布于: 4 小时前阅读数: 2
用户头像

HelloBug

关注

还未添加个人签名 2018.09.20 加入

还未添加个人简介

评论

发布
暂无评论
Go- 函数执行时间