一段会导致goroutine泄露的代码

func Leak()  { //会导致goroutine泄露
	ch := make(chan int)
	go func() {
		fmt.Println(<-ch)
	}()
}

你可能感兴趣的:(Go,golang)