golang 如何查看程序执行消耗时间

Posted 翔云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang 如何查看程序执行消耗时间相关的知识,希望对你有一定的参考价值。

写代码过程中,有时需要分析代码块的时间消耗。
本文介绍使用time包中的Since函数查看程序执行时间。

package main



import (
        "fmt"
        "time"
)


func main() {

        t := time.Now()

        fmt.Println("Hello")

        for i:=0; i< 10002; i++ {
                fmt.Println(i)
        }

        elapsed := time.Since(t)

        fmt.Println("app elapsed:", elapsed)
}

Since返回从时间t开始,到执行Since经历的时间。

output:

0
...
9999
10000
10001
app elapsed: 20ms

以上是关于golang 如何查看程序执行消耗时间的主要内容,如果未能解决你的问题,请参考以下文章

golang代码片段(摘抄)

golang的xorm如何将[]map[string][]byte 格式的数据序列化成json输出

当 ViewPager 中的片段出现和消失时如何执行一些代码

代码片段 - Golang 实现简单的 Web 服务器

代码片段 - Golang 实现集合操作

Sleep() 方法后的代码片段没有被执行