fatal error: all goroutines are asleep - deadlock!
funcmain(){ch:=make(chanint)ch<-1//1流入信道,堵塞当前线,没人取走数据信道不会打开,也就是当前线程main会阻塞,不会往下执行,所以,无法取出或者存储协程中的数据fmt.Println("Thislinecodewontrun")//在此行执行之前Go就会报死锁}//fatalerror:allgoroutinesareasleep-deadlock!报错//说