最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

go - Is loop variable in Golang copied? - Stack Overflow

programmeradmin1浏览0评论

I'm working with looping over a slice of a large struct in Golang like this:

type A struct {
// large struct, about 200 bytes
}

func f() {
  var data []A = getData()
  for _, v := range data {
    // read fields in v
  }
}

I'm wondering if a slice is of length N, will v be copied N times, or is it just something like a reference in C++, or is it copy-on-write?

发布评论

评论列表(0)

  1. 暂无评论