ch := make(chan string)
fmt.Println(ch <- "msg")
这样写报错 syntax error: unexpected =, expecting comma or )
有疑问加站长微信联系(非本文作者)

ch := make(chan string)
fmt.Println(ch <- "msg")
这样写报错 syntax error: unexpected =, expecting comma or )
有疑问加站长微信联系(非本文作者)
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
`单行代码`
ch <- "msg"是单独的语句,类似i++,不能作为输入