Go计算运行的时间

前端之家收集整理的这篇文章主要介绍了Go计算运行的时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

函数time.Since()

计算golang运行的时间是非常有用的性能衡量指标,特别是在并发基准测试中。下面将介绍如何简单地使用Go语言来计算程序运行的时间。

简单地使用Golang的time.Since()函数即可。下面有一个完整例子展示这个用法

package main

import (
    "fmt"
    "time"
)

func StartCac() {
    t1 := time.Now() // get current time
    //logic handlers
    for i := 0; i < 1000; i++ {
        fmt.Print("*")
    }
    elapsed := time.Since(t1)
    fmt.Println("App elapsed: ",elapsed)
}

func main(){
    StartCac()
}

输出结果:

****(ignores the output 1000 *)
App elapsed:  1.0001ms

欢迎加入我的微信公众号

原文链接:https://www.f2er.com/go/189882.html

猜你在找的Go相关文章