dpjw67160 2018-06-04 15:49
浏览 17
已采纳

当我将变量传递给golang中的私有方法时,它会创建一个新实例吗?

If I have main function:

var a = "foo"
modify(a)
fmt.Println(a)

where

func modify(s string) error {
  s = "bar"
}

will the result be "foo" or "bar"?

  • 写回答

1条回答 默认 最新

  • doudi4014 2018-06-04 18:58
    关注

    None. It won't compile because neither 'foo' nor 'bar' is a single character. But let's say you used double quotes instead.

    In Golang, arguments are passed by value (they are copied to the new place in memory - stack or heap), and it does not matter whether it is a private or a public method or arbitrary function. The new instance is modified. The result of your example will be "foo".

    In order to modify variable lying outside of the function, you have to explicitly pass the pointer pointing to such variable.

    func modify(s *string) {
      *s = "bar"
    }
    
    ...
    
    var a = "foo"
    modify(&a)
    println(a) // will print "bar"
    

    In this case pointer itself is passed by values (it is copied) but its value (the address of a) still points to the same variable. So the a can by modified through the pointer.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?