golang中for{}会引起程序死锁
如:
main(){
go func(){fmt.Println("dfkdsf")}
for{
}
程序运行一会会停止
按照下面的写法才正确
var c=make(chan int,1)
<-c