golang闭包从range中捕获错误的值

huangapple go评论80阅读模式
英文:

golang closure catch wrong value from range

问题

以下是翻译好的代码:

func main() {
    lans := [5]string{"java", "python", "erlang", "cpp", "go"}
    fin := make(chan bool)
    for _, l := range lans {
        go func(lang string) {
            fmt.Println(lang)
        }(l)
    }
    <-fin
}

我认为输出应该是:java, python, erlang, cpp, go;
但实际输出是:
go go go go go;
这里出了什么问题?

英文:

test codes below:

func main() {
    lans := [5]string{&quot;java&quot;, &quot;python&quot;, &quot;erlang&quot;, &quot;cpp&quot;, &quot;go&quot;}
    fin := make(chan bool)
    for _, l := range(lans) {
		go func() {
			fmt.Println(l)
		    }()
	}
	 &lt;- fin
}

I think the output will be: java, python, erlang, cpp, go;
but the output is:
go go go go go;
what's wrong here?

答案1

得分: 2

请将函数写成以下形式,以捕获动词 l 并传入函数中:

go func(l string) {
    fmt.Println(l)
}(l)
英文:

just write the function like this, to catch the verb l into function

 go func(l string) {
     fmt.Println(l)
 }(l)

huangapple
  • 本文由 发表于 2016年12月22日 11:37:10
  • 转载请务必保留本文链接:https://go.coder-hub.com/41275410.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定