常见双通道channel使用: c2:=make(chanint,2) c2<-1 c2<-2 c2<-3 fmt.Println(<-c2) fmt.Println(<-c2) fmt.Println(<-c2) 由于channel大小只有2个,在c2<-3那里一定会阻塞,然后程序一直阻塞下去死掉 程序报错:fatalerror:allgoroutinesareasleep-deadlock!
改进方法:1、增大channel的大小 2、同步执行改成异步执行 (因为只有先执行c2<-3才能执行取<-c2数据)
所以以后如果有使用channel的大的场合,用池子进行公共管理要注意这些阻塞问题
c2:=make(chanint,2) c2<-1 c2<-2 gofunc(){ c2<-3 }() fmt.Println(<-c2) fmt.Println(<-c2) fmt.Println(<-c2) 正确执行原文链接:https://www.f2er.com/go/190296.html