在 Go 中测量函数运行时间
在 Go 中,测量函数执行时间的一个简单方法是利用 defer 特性。
实现
func trace(s string) (string, time.Time) { log.Println("START:", s) return s, time.Now() } func un(s string, startTime time.Time) { endTime := time.Now() log.Println(" END:", s, "ElapsedTime in seconds:", endTime.Sub(startTime)) }
func someFunction() { defer un(trace("SOME_ARBITRARY_STRING_SO_YOU_CAN_KEEP_TRACK")) // Perform the function's intended operations here... }
说明
注意:
以上是如何使用 Defer 功能测量 Go 中的函数运行时间?的详细内容。更多信息请关注PHP中文网其他相关文章!