gpt4 book ai didi

去 WaitGroup 不明显的行为

转载 作者:数据小太阳 更新时间:2023-10-29 03:46:42 31 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





golang - Content of a pointer in a slice changes during recursive function run

(1 个回答)



How to understand this behavior of goroutine?

(2 个回答)



sync.WaitGroup doesnt waits

(1 个回答)



golang closure catch wrong value from range

(1 个回答)



Why does Go handle closures differently in goroutines?

(2 个回答)


2年前关闭。




我不明白为什么这个代码返回




package main

import (
"fmt"
"sync"
)

func main() {
wg := sync.WaitGroup{}
data := []string{"one", "two", "three"}
for _, v := range data {
wg.Add(1)
go func() {
fmt.Println(v)
wg.Done()
}()
}
wg.Wait()
}

请解释任何人

最佳答案

添加 v := v作为循环中的第一行。

Reference :

This is because each iteration of the loop uses the same instance of the variable v[...]

关于去 WaitGroup 不明显的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55186223/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com