我已经使用渠道进行交流..
b := make([]int,0) //This is the slice I have created.
我正在将值附加到切片,并且我想将存储在 b 中的最终切片传输给另一个函数。我已经使用了这段代码。
slic := make(chan int)
go func() { slic <- input()} ()
slice := <-slic
fmt.Println(slice)
我收到此错误:“不能在返回参数中使用 b (type []int) 作为 int 类型。”