函數(shù)的參數(shù) 都是值傳遞 文檔說的很清楚
http://golang.org/ref/spec#Calls
After they are evaluated, the parameters of the call are passed by value to the function and the called function begins execution.
但是閉包對外部變量的訪問確實是引用訪問
所以作者這個例子并不恰當
(譯)Go 語言中沒有引用傳遞原文鏈接:There is no pass-by-reference in Go 我之前關于指針的那篇帖 引起了很多關于引用傳遞的爭議。這篇帖子算是對這些爭議的回應吧眶诈。 首先...