This commit is contained in:
andy pan 2018-05-28 19:19:17 +08:00
parent d44bf06db0
commit d9363d36ec
1 changed files with 10 additions and 10 deletions

View File

@ -41,8 +41,8 @@ const (
ZiB // 1180591620717411303424 (超过了int64的范围) ZiB // 1180591620717411303424 (超过了int64的范围)
YiB // 1208925819614629174706176 YiB // 1208925819614629174706176
) )
const RunTimes = 10000000 const RunTimes = 1000000
const loop = 10 const loop = 1000000
func demoFunc() error { func demoFunc() error {
n := 10 n := 10
@ -51,15 +51,15 @@ func demoFunc() error {
} }
func demoPoolFunc(args interface{}) error { func demoPoolFunc(args interface{}) error {
//m := args.(int) m := args.(int)
//var n int var n int
//for i := 0; i < m; i++ { for i := 0; i < m; i++ {
// n += i n += i
//} }
//return nil
n := args.(int)
time.Sleep(time.Duration(n) * time.Millisecond)
return nil return nil
// n := args.(int)
// time.Sleep(time.Duration(n) * time.Millisecond)
// return nil
} }
func BenchmarkGoroutineWithFunc(b *testing.B) { func BenchmarkGoroutineWithFunc(b *testing.B) {