- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。
想改进这个问题?将问题更新为 on-topic对于堆栈溢出。
1年前关闭。
Improve this question
如果这是一个已经提出的问题,我不知道要查找什么,如果是,请提前抱歉。
我是golang的新手,我玩了一些goroutines,我在编译以下代码时发现:
package main
import (
"fmt"
"math/big"
"sync"
)
const (
jobCount = 5
threadCount = 1
)
type workerResult struct {
job int64
processId int
result *big.Int
}
func main() {
var hashMap sync.Map
jobs := make(chan int64, jobCount)
results := make(chan workerResult, jobCount)
var wg sync.WaitGroup
for i := 0; i < threadCount; i++ {
wg.Add(1)
go worker(jobs, results, i, &hashMap, &wg)
}
go func(){
for i := int64(0); i < jobCount; i++ {
jobs <- i
}
close(jobs)
}()
go func(){
wg.Wait()
close(results)
}()
for result := range results {
fmt.Println(result.job, result.processId, result.result.String())
}
}
func worker(jobs <-chan int64, results chan<- workerResult, id int, hashMap *sync.Map, wg *sync.WaitGroup) {
for i := range jobs {
results <- workerResult{i, id, fib(i, hashMap)}
}
(*wg).Done()
}
func fib(num int64, hashMap *sync.Map) *big.Int {
if num < 2 {
return big.NewInt(num)
} else {
hashedResult, ok := (*hashMap).Load(num)
if ok{
return hashedResult.(*big.Int)
} else {
result := fib(num-1, hashMap)
result = result.Add(result, fib(num-2, hashMap))
(*hashMap).Store(num, result)
return result
}
}
}
0 0 0
1 0 1
2 0 4
3 0 4
4 0 4
jobCount
对于别的东西,可以说
10
,输出将是:
0 0 0
1 0 1
2 0 128
3 0 128
4 0 128
5 0 128
6 0 128
7 0 128
8 0 128
9 0 128
0 0 0
1 0 1
2 0 1
3 0 2
4 0 4
5 0 8
6 0 32
7 0 64
8 0 64
9 0 128
workerResult
并交换了
result
的类型(场)从
*big.Int
至
string
,留下这样的代码:
package main
import (
"fmt"
"math/big"
"sync"
)
const (
jobCount = 10
threadCount = 1
)
type workerResult struct {
job int64
processId int
result string
}
func main() {
var hashMap sync.Map
jobs := make(chan int64, jobCount)
results := make(chan workerResult, jobCount)
var wg sync.WaitGroup
for i := 0; i < threadCount; i++ {
wg.Add(1)
go worker(jobs, results, i, &hashMap, &wg)
}
go func(){
for i := int64(0); i < jobCount; i++ {
jobs <- i
}
close(jobs)
}()
go func(){
wg.Wait()
close(results)
}()
for result := range results {
fmt.Println(result.job, result.processId, result.result)
}
}
func worker(jobs <-chan int64, results chan<- workerResult, id int, hashMap *sync.Map, wg *sync.WaitGroup) {
for i := range jobs {
results <- workerResult{i, id, fib(i, hashMap).String()}
}
(*wg).Done()
}
func fib(num int64, hashMap *sync.Map) *big.Int {
if num < 2 {
return big.NewInt(num)
} else {
hashedResult, ok := (*hashMap).Load(num)
if ok{
return hashedResult.(*big.Int)
} else {
result := fib(num-1, hashMap)
result = result.Add(result, fib(num-2, hashMap))
(*hashMap).Store(num, result)
return result
}
}
}
jobCount = 10
0 0 0
1 0 1
2 0 1
3 0 2
4 0 4
5 0 8
6 0 16
7 0 32
8 0 64
9 0 128
jobCount = 20
0 0 0
1 0 1
2 0 1
3 0 2
4 0 4
5 0 8
6 0 16
7 0 32
8 0 64
9 0 128
10 0 256
11 0 512
12 0 1024
13 0 2048
14 0 4096
15 0 8192
16 0 16384
17 0 32768
18 0 65536
19 0 131072
-race
运行代码参数给了我这个代码的第一个版本:
0 0 0
1 0 1
==================
WARNING: DATA RACE
Read at 0x00c000100048 by main goroutine:
math/big.(*Int).Text()
/usr/local/go/src/math/big/intconv.go:25 +0x3bd
math/big.(*Int).String()
/usr/local/go/src/math/big/intconv.go:40 +0x39f
main.main()
/home/illic/go/src/awesomeProject/fib.go:44 +0x221
Previous write at 0x00c000100048 by goroutine 7:
math/big.(*Int).Add()
/usr/local/go/src/math/big/int.go:121 +0x1e3
main.fib()
/home/illic/go/src/awesomeProject/fib.go:64 +0xfc
main.worker()
/home/illic/go/src/awesomeProject/fib.go:50 +0x56
Goroutine 7 (finished) created at:
main.main()
/home/illic/go/src/awesomeProject/fib.go:28 +0x195
==================
==================
WARNING: DATA RACE
Read at 0x00c000100040 by main goroutine:
math/big.(*Int).Text()
/usr/local/go/src/math/big/intconv.go:25 +0x3ec
math/big.(*Int).String()
/usr/local/go/src/math/big/intconv.go:40 +0x39f
main.main()
/home/illic/go/src/awesomeProject/fib.go:44 +0x221
Previous write at 0x00c000100040 by goroutine 7:
math/big.(*Int).Add()
/usr/local/go/src/math/big/int.go:132 +0x252
main.fib()
/home/illic/go/src/awesomeProject/fib.go:64 +0xfc
main.worker()
/home/illic/go/src/awesomeProject/fib.go:50 +0x56
Goroutine 7 (finished) created at:
main.main()
/home/illic/go/src/awesomeProject/fib.go:28 +0x195
==================
2 0 4
3 0 4
4 0 4
Found 2 data race(s)
0 0 0
1 0 1
2 0 1
3 0 2
4 0 4
package main
import (
"fmt"
"math/big"
"sync"
)
const (
jobCount = 10
threadCount = 1
)
type workerResult struct {
job int64
processId int
result *big.Int
}
func main() {
var hashMap sync.Map
jobs := make(chan int64, jobCount)
results := make(chan workerResult, jobCount)
var wg sync.WaitGroup
for i := 0; i < threadCount; i++ {
wg.Add(1)
go worker(jobs, results, i, &hashMap, &wg)
}
go func(){
for i := int64(0); i < jobCount; i++ {
jobs <- i
}
close(jobs)
}()
go func(){
wg.Wait()
close(results)
}()
for r := range results {
fmt.Println(r.job, r.processId, r.result.String())
}
}
func worker(jobs <-chan int64, results chan<- workerResult, id int, hashMap *sync.Map, wg *sync.WaitGroup) {
for i := range jobs {
results <- workerResult{i, id, fib(i, hashMap)}
}
(*wg).Done()
}
func fib(num int64, hashMap *sync.Map) *big.Int {
if num < 2 {
return big.NewInt(num)
} else {
hashedResult, ok := (*hashMap).Load(num)
if ok{
return hashedResult.(*big.Int)
} else {
result := big.Int{}
result.Set(fib(num-1, hashMap))
result = *result.Add(&result, fib(num-2, hashMap))
(*hashMap).Store(num, &result)
return &result
}
}
}
最佳答案
big.Int
的文档说:
An Int represents a signed multi-precision integer. The zero value for an Int represents the value 0.
Operations always take pointer arguments (*Int) rather than Int values, and each unique Int value requires its own unique *Int pointer. To "copy" an Int value, an existing (or newly allocated) Int must be set to a new value using the Int.Set method; shallow copies of Ints are not supported and may lead to errors.
Int.Set
在我们的程序中删除竞争条件。
package main
import (
"fmt"
"math/big"
"sync"
)
const (
jobCount = 5
threadCount = 1
)
type workerResult struct {
job int64
processID int
result *big.Int
}
func main() {
var hashMap sync.Map
jobs := make(chan int64, jobCount)
results := make(chan workerResult, jobCount)
var wg sync.WaitGroup
for i := 0; i < threadCount; i++ {
wg.Add(1)
go worker(jobs, results, i, &hashMap, &wg)
}
go func() {
for i := int64(0); i < jobCount; i++ {
jobs <- i
}
close(jobs)
}()
go func() {
wg.Wait()
close(results)
}()
for r := range results {
fmt.Println(r.job, r.processID, r.result.String())
}
}
func worker(jobs <-chan int64, results chan<- workerResult, id int, hashMap *sync.Map, wg *sync.WaitGroup) {
for i := range jobs {
results <- workerResult{i, id, fib(i, hashMap)}
}
wg.Done()
}
func fib(num int64, hashMap *sync.Map) *big.Int {
if num < 2 {
z := big.Int{}
return z.Set(big.NewInt(num))
}
hashedResult, ok := hashMap.Load(num)
if ok {
z := big.Int{}
return z.Set(hashedResult.(*big.Int))
}
result := fib(num-1, hashMap)
result = result.Add(result, fib(num-2, hashMap))
hashMap.Store(num, result)
z := big.Int{}
return z.Set(result)
}
看看,如果这个程序对你有帮助!
关于go - 有人可以向我解释一下这种 golang 数据竞赛行为吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62249381/
我在一个项目中工作,该项目需要 SQL 结果的最佳性能,并且希望优化查询,但经过反复试验后,我在 IN 方面遇到了一些问题。 -- THIS RETURNS NO RESULTS AT ALL. SE
在尝试创建一个实际上非常简单的 SQL 语句时,我发现自己迷失了方向。 我有一个包含 3 个表的数据库: 食谱 - 存储一些用于 cooking 的食谱名称 配料食谱 - 将配料与食谱链接 成分 -
我正在尝试理解 PHP 中的 Hebrev 函数。 https://php.net/manual/en/function.hebrevc.php 它说:“将逻辑希伯来语文本转换为视觉文本”。但我不明白
嗨,我在 Grid view 的 android 文档中发现了一段代码对于以下代码。 gridview.setOnItemClickListener(new OnItemClickListener()
谁能解释一下 InfiniBand 是什么?与以太网相比的主要区别是什么,这些差异如何使其比以太网更快? 在官方description从 mellanox 写到 Introduce InfiniBan
这个问题已经有答案了: How are java increment statements evaluated in complex expressions (1 个回答) 已关闭 8 年前。 我知道
我正在阅读 MySQL 教程,我遇到了这个: SELECT /*! SQL_NO_CACHE */ user FROM users; 为什么优化提示 SQL_NO_CACHE 包含在: /*!
我无法理解$(this),我做了一个剪刀石头布的版本,并应用了 jQuery 让用户在计算机上选择按钮选项。我希望有人能解释一下 $(this) 指的是什么,它是 btn-primary 吗?该函数在
我不是很确定 while(choice == 1 || choice ==2);谁能解释一下。我明白这一点 if(choice ==1) displayMonthly(rainfall); e
let flyRight = CABasicAnimation(keyPath: "position.x") flyRight.toValue = view.bounds.size.width/2 f
目录 解释:int型默认值为0 但我们尝试发现并不能通过: 原因: int的默认值为0,而Integer的默认值为null
我正在处理一个查询,自从一个 SSRS 服务器传输到另一个服务器后,它似乎没有按预期执行,并且 where 语句的一部分中出现了以下行 找出不同之处,或者至少从我能找到的地方来看。 where COA
我正在制作一个退回检测程序,读取退回邮件。我们的设置是发送电子邮件,在发送的邮件中添加一个 noreply@domain.tl。一些收件人不再存在,因此我们想要读取退回邮件,并检测它发送给谁。我已经崩
我有一个关于公式通过控制点弯曲的问题。 如您所知,HTML Canvas 有 quadraticCurveTo(x1, y1, x2, y2)与 x1 and x2作为控制点。 但是,当您尝试使用它绘
我有一个 Emakefile看起来像: %% -- %% %% -- {'/Users/user/projects/custom_test/trunk/*', [debug_info, {out
我有一个非常简单的问题。这不仅适用于 spray-json,而且我已经阅读了 argonaut 和 circe 的类似声明。所以请赐教。 在 spray-json 中,我遇到了 There is no
我正在为视频添加水印。我试图让水印与视频尺寸成比例。我已经使用 scale2ref 看到了十几个不同的答案,但没有解释实际发生了什么,所以我发现很难知道如何实现/更改配置以适应我的情况。 当前覆盖命令
因为我正在学习语言,所以我在玩 Haskell,我只是发现了一些我不理解的东西,我找不到解释。如果我尝试运行此代码: map (`div` 0) [1,2,3,4] 我得到一个除以 0 的异常,这是预
我正在寻找解决错误对象引用未设置到对象实例的步骤/指南。以及问题发生原因的解释。 我正在寻找更一般的解释,所以如果我收到错误,我应该采取什么步骤来查找问题。我经常看到有人提供特定代码段的帖子,而其他人
我最近想升级我的知识React ,所以我从组件生命周期方法开始。让我好奇的第一件事是这个componentWillReceiveProps .所以,文档说当组件接收新的(不一定是更新的) Prop 时
我是一名优秀的程序员,十分优秀!