I have a []*Cookie array, but how to get []Cookie array? I tried to use the * symbol but there was a syntax error.
1条回答 默认 最新
- douxunnian0423 2019-03-05 02:12关注
Go does not provide an automatic conversion from slice of pointers to values to a slice of values.
Write a loop to do the conversion:
result := make([]Cookie, len(source)) for i := range result { result[i] = *source[i] }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报