package benchmark
import (
"testing"
"time"
)
func BenchmarkByAdd(b *testing.B){
b.ResetTimer()
for i:=1;i<10;i++{
time.Sleep(1 * time.Second)
}
b.StopTimer()
}
Go基础--26 Benchmark
最新推荐文章于 2024-11-11 16:22:03 发布
package benchmark
import (
"testing"
"time"
)
func BenchmarkByAdd(b *testing.B){
b.ResetTimer()
for i:=1;i<10;i++{
time.Sleep(1 * time.Second)
}
b.StopTimer()
}