摘要:
关闭2次 ch := make(chan bool) close(ch) close(ch) // 这样会panic的,channel不能close两次 读取的时候channel提前关闭了 ch := make(chan string) close(ch) i := <- ch // 不会panic, i读取到的值是空 "", 如果channel是bool... 阅读全文
posted @ 2015-05-28 19:31 蝈蝈俊 阅读(863) 评论(0) 推荐(0) 编辑