gpt4 book ai didi

Go RWMutex 仍然会引发竞争条件吗?

转载 作者:IT王子 更新时间:2023-10-29 00:55:01 24 4
gpt4 key购买 nike

我有一个看似无害的包,它只是制作一个 slice 并使用 RWMutex 保护它。但是,当我运行它时,它仍然提示竞争条件。我究竟做错了什么? ( playground )

type Ids struct {
e []int64
sync.RWMutex
}

func (i *Ids) Read() []int64 {
i.RLock()
defer i.RUnlock()

return i.e
}


func (i *Ids) Append(int int64) {
i.Lock()
defer i.Unlock()

i.e = append(i.e, int)
}

func main() {
t := &Ids{e: make([]int64, 1)}

for i := 0; i < 100; i++ {
go func() {
fmt.Printf("%v\n", t.Read())
}()

go func() {
t.Append(int64(i))
}()
}

time.Sleep(time.Second * 10)
}

当使用 -race 运行时,它返回(除其他外):

==================
WARNING: DATA RACE
Read at 0x00c4200a0010 by goroutine 7:
main.main.func2()
.../main.go:38 +0x38

Previous write at 0x00c4200a0010 by main goroutine:
main.main()
.../main.go:32 +0x197

Goroutine 7 (running) created at:
main.main()
.../main.go:37 +0x173
==================

最佳答案

您正在多个 goroutine 中捕获相同的变量 i

解决此问题的一种方法是像这样修改主 for 循环:

for i := 0; i < 100; i++ {
i := i # look here
go func() {
fmt.Printf("%v\n", t.Read())
}()

go func() {
t.Append(int64(i))
}()
}

这将确保您在 for 循环的每次迭代的第二个 goroutine 的闭包中捕获不同的变量。在您的示例中,传递给 t.Appendi 与 for 循环同时递增的 i 相同。

我还建议运行 go vet 以在将来捕获此类错误。有关更多信息,在 Go FAQ 中有一个关于此问题的条目,该条目更详细:https://golang.org/doc/faq#closures_and_goroutines

关于Go RWMutex 仍然会引发竞争条件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49397395/

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