java 引用传递,Java通过引用传递

本文对比了Java中CodeA和CodeB的创建对象方式,阐述了通过值传递和引用传递的区别,并通过实例说明了Java中对象传递的特性。重点讲解了如何理解Java中对象作为参数时的改变作用域问题。

What is the difference between this 2 codes:

Code A:

Foo myFoo;

myFoo = createfoo();

where

public Foo createFoo()

{

Foo foo = new Foo();

return foo;

}

Vs. Code B:

Foo myFoo;

createFoo(myFoo);

public void createFoo(Foo foo)

{

Foo f = new Foo();

foo = f;

}

Are there any differences between these 2 pieces of codes?

解决方案

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:

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");

arXpP.png

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)

k2LBD.png

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

changeReference(f);

1Ez74.png

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");

Krx4N.png

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

rCluu.png

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

PRZPg.png

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.

H9Qsf.png

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

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值