Merge branch 'develop'

This commit is contained in:
andy pan 2018-06-15 11:53:15 +08:00
commit 9f7ac7e7aa
1 changed files with 10 additions and 10 deletions

View File

@ -42,7 +42,7 @@ const (
YiB // 1208925819614629174706176 YiB // 1208925819614629174706176
) )
const RunTimes = 1000000 const RunTimes = 1000000
const loop = 1000000 const loop = 10
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) {