摘要: func worker(highPriority, lowPriority <-chan int, stopCh chan struct{}) { for { select { case <-stopCh: return case job := <-highPriority: // 优先处理高优先级 阅读全文
posted @ 2025-08-18 15:38 CJTARRR 阅读(6) 评论(0) 推荐(0)