3 回答
TA贡献1794条经验 获得超8个赞
你有一个数据竞赛,结果是不确定的。您必须同步对共享变量的访问:
var total int
var lock sync.Mutex
var wg sync.WaitGroup
// Inc increments the counter for the given key.
func inc(num int) {
lock.Lock()
defer lock.Unlock()
total += num
wg.Done()
}
// Value returns the current value of the counter for the given key.
func getValue() int {
lock.Lock()
defer lock.Unlock()
return total
}
或者,用于sync/atomic访问/修改变量。
TA贡献1802条经验 获得超4个赞
已经提到您有“数据竞赛”,使用Mutex是一种解决方案。或者,您可以使用atomic更快的包。
package main
import (
"fmt"
"sync"
"sync/atomic"
)
var total uint64
var wg sync.WaitGroup
func inc(num uint64) {
atomic.AddUint64(&total, 1)
wg.Done()
}
// Value returns the current value of the counter for the given key.
func getValue() uint64 {
return atomic.LoadUint64(&total)
}
func main() {
for i := uint64(1); i <= 1000; i++ {
wg.Add(1)
go inc(i)
}
wg.Wait()
fmt.Println(getValue())
}
TA贡献2036条经验 获得超8个赞
每次获得不同值的原因是total += num.
一个简单的解决方法是添加互斥锁: var mu sync.Mutex
并将其用于inc :
func inc(num int) {
mu.Lock()
defer mu.Unlock()
total += num
wg.Done()
}
- 3 回答
- 0 关注
- 99 浏览
添加回答
举报