Gabirel / Gabirel.github.io

Gabriel's Personal Blog
https://gabirel.github.io
MIT License
1 stars 0 forks source link

优雅测函数执行时间(Rust, Golang, Python) | Go Deep | Blog #37

Open Gabirel opened 3 years ago

Gabirel commented 3 years ago

https://godeep.pro/zh-CN/same-level-category/2021/05/26-%E4%BC%98%E9%9B%85%E6%B5%8B%E5%87%BD%E6%95%B0%E6%89%A7%E8%A1%8C%E6%97%B6%E9%97%B4%EF%BC%88Rust-Golang-Python%EF%BC%89/

有时非常需要测量函数的执行时间。 在其他语言中很容易实现比如像Python与Golang,而在Rust实现即相对比较困难。 因此,本文将演示一些衡量函数执行时间的方法与技巧。 本文从最简单的版本到可重用的版本均有,同时也包括了Python和Golang。