老哥们,我把代码中的 runtime.GOMAXPROCS(1)
注释掉了,可是程序运行下来的时间根本没减少,这是为什么?
真是百思不得骑呐
package main
import (
"fmt"
"time"
"runtime"
)
var quit chan int = make(chan int)
func loop() {
for i := 0; i < 10000; i++ {
fmt.Printf("%d\n ", i)
}
quit <- 0
}
func main() {
fmt.Println(runtime.NumCPU())
time.Sleep(time.Second)
a := 500
t1 := time.Now()
runtime.GOMAXPROCS(1) //单核跑和把这句话注释吊(使用默认 CPU 个数)跑下来时间没差,这是为什么?
for i := 1; i <= a; i++ {
go loop()
}
for i := 0; i < a; i++ {
<-quit
}
elapsed := time.Since(t1)
fmt.Println("运行时间:", elapsed)
}
// 下面是 GOMAXPROCS 的说明
// GOMAXPROCS sets the maximum number of CPUs that can be executing
// simultaneously and returns the previous setting. If n < 1, it does not
// change the current setting.
// The number of logical CPUs on the local machine can be queried with NumCPU.
// This call will go away when the scheduler improves.
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.