首页 > 编程语言 > 详细

Java学习随笔1:Java是值传递还是引用传递?

时间:2015-10-18 11:11:27      阅读:210      评论:0      收藏:0      [点我收藏+]

Java always passes arguments by value NOT by reference.


Let me explain this through an example:

public class Main{
     public static void main(String[] args){
          Foo f = new Foo("f");
          changeReference(f); // It won‘t change the reference!
          modifyReference(f); // It will modify the object that the reference variable "f" refers to!
     }
     public static void changeReference(Foo a){
          Foo b = new Foo("b");
          a = b;
     }
     public static void modifyReference(Foo c){
          c.setAttribute("c");
     }
}

I will explain this in steps:

  1. Declaring a reference named f of type Foo and assign it to a new object of type Foo with an attribute "f".

    Foo f = new Foo("f");
    

    技术分享

  2. From the method side, a reference of type Foo with a name a is declared and it‘s initially assigned to null.

    public static void changeReference(Foo a)
    

    技术分享

  3. As you call the method changeReference, the reference a will be assigned to the object which is passed as an argument.

    changeReference(f);
    

    技术分享

  4. Declaring a reference named b of type Foo and assign it to a new object of type Foo with an attribute "b".

    Foo b = new Foo("b");
    

    技术分享

  5. a = b is re-assigning the reference a NOT f to the object whose its attribute is "b".

    技术分享


  6. As you call modifyReference(Foo c) method, a reference c is created and assigned to the object with attribute "f".

    技术分享

  7. c.setAttribute("c"); will change the attribute of the object that reference c points to it, and it‘s same object that reference f points to it.

    技术分享

I hope you understand now how passing objects as arguments works in Java :)

Java学习随笔1:Java是值传递还是引用传递?

原文:http://www.cnblogs.com/mengrennwpu/p/4889015.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!