我有一个带有开关的goroutine,它想将接口附加到结构上,但是在运行时我没有收到错误,但是没有附加任何响应 您如何在Go中将其编写为concurrency-safe?

这是我的代码:

var wg sync.WaitGroup

for _, v := range inputParameters.Entities {
    go func(v domain.Entity) {
        wg.Add(1)
        defer wg.Done()

        var f func(
            v domain.Entity,
            result *domain.Resoponse,
        )(interface{}, Error) // Signature of all Get methods

        switch v.Name {
        case "process1":
            f = 1Processor{}.Get
        case "process2":
            f = 2Processor{}.Get
        case "process3":
            f = 3Processor{}.Get
        default:
            return
        }
        res, err := f(v, result)

        if err != nil {
            mapError.Error = append(mapError.Error, err)
        } else {
            result.Mu.Lock()
            defer result.Mu.Unlock()
            result.Entities = append(result.Entities, res)
        }
    }(v)
}

wg.Wait()
return result, mapError

供参考,以下是Response类型:

type Resoponse struct {
    Mu      sync.Mutex
    Entities []interface{}
}
分析解答

在goroutine之前执行wg.Add(1)。无法保证goroutine中的任何逻辑在到达wg.Wait()之前就已完成,因此请勿将wg.Add(1)放入goroutine中。