在任何给定时间,Go 似乎总是至少有 4 个 goroutine 在运行。其他三个不是主要的 goroutine 是什么?
http://play.golang.org/p/MQBiLmHXBK
package main
import (
"fmt"
"runtime"
)
func main() {
fmt.Println(runtime.NumGoroutine()) //4
}
相关分类