php小编鱼仔为您揭示一个关于切片的问题:为什么通过通道和 goroutine 写入切片最终为空?在Go语言中,通道和 goroutine 是并发编程的重要工具,但在某些情况下,使用它们写入切片可能会出现意外结果。本文将详细解释这个问题的原因,并提供解决方案,帮助您更好地理解和处理这种情况。
问题内容
我运行这个函数:
func run() () {
// this slice is going to be filled out by a channel and goroutine.
vertices := make([]vertex, 0)
var wg sync.waitgroup
// obtain a writer to fill out the vertices.
writer := writer(&wg, vertices)
// run an arbitrary logic to send data to writer.
logic(writer)
// stop the writer reading on the channel.
close(writer)
// wait for the write to complete.
wg.wait()
// see if vertices slice is actually filled out.
doublecheckvertices(vertices)
}
登录后复制
但最终,我的 vertices
切片是空的:
func doublecheckvertices(vertices []vertex) () {
// here i notice that `vertices` slice is actually empty 🙁
}
登录后复制
返回 writer
的函数是这样的:
func writer(wg *sync.waitgroup, vertices []vertex) (chan登录后复制
任何人都可以帮我弄清楚为什么我的 vertices
切片最终是空的吗?
日志
日志表明 vertices
切片实际上已填充。但由于某种原因,传递给doublecheckvertices
时为空。
vertices = append(vertices, a)
// This Log shows the slice is actually filled out:
fmt.Printf("vertices len() is %vn", len(vertices))
登录后复制
解决方法
这看起来类似于“将切片作为函数参数传递,并修改原始切片”
如果您希望 goroutine 修改您在外部创建的切片,则需要一个指向该切片的指针:
func Writer(wg *sync.WaitGroup, vertices *[]Vertex) (chan登录后复制
以上就是通过通道和 goroutine 写入切片:为什么切片最终为空的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!