您已经创建了一个函数,用于将元素从队列中出队和入队,确保正确数量的 Goroutine 运行只要队列包含元素即可。但是,您希望有一个方法来显示当前活动的 Goroutine 的数量。
runtime.NumGoroutine 用法
而 runtime.NumGoroutine 函数可以提供正在运行的 Goroutine 的数量在您的程序中,以不同的方式处理问题至关重要。这是因为你的循环会由于嵌套循环而不断生成 goroutine 并浪费 CPU 周期。
替代方法:Sync.WaitGroup
更有效的解决方案是利用同步.WaitGroup。通过如下修改代码:
func deen(wg *sync.WaitGroup, queue chan int) { for element := range queue { fmt.Println("element is ", element) if element%2 == 0 { fmt.Println("new element is ", element) wg.Add(2) queue <- (element * 100 + 11) queue <- (element * 100 + 33) } wg.Done() } } func main() { var wg sync.WaitGroup queue := make(chan int, 10) queue <- 1 queue <- 2 queue <- 3 queue <- 0 for i := 0; i < 4; i++ { wg.Add(1) go deen(&wg, queue) } wg.Wait() close(queue) fmt.Println("list len", len(queue)) // this must be 0 }
在此修改后的代码中:
以上是如何准确统计并显示我的Go程序中活跃的goroutine数量?的详细内容。更多信息请关注PHP中文网其他相关文章!