-6

我有两个例子我不明白

Java将值作为变量传递或通过引用传递

为什么在Ref类中整数变量没有改变(null)?为什么在RefCol类中修改集合变量col(1)

类参考:

test(): entero: 5

inicio(): entero: null

类 RefCol:

test(): col: [1]

inicio(): col: [1] 

.

import java.util.Collection;
import java.util.Vector;


public class Ref {

    public static void main(String[] args){
        Ref ref = new Ref();
        ref.inicio();
    }

    public void inicio(){
        Integer entero = null;
        test(entero);
        System.out.println("inicio(): entero: " + entero);
    }

    public void test(Integer entero){
        entero = new Integer(5);
        System.out.println("test(): entero: " + entero);
    }

}





public class RefCol {

    public static void main(String[] args){
        RefCol ref = new RefCol();
        ref.inicio();
    }

    public void inicio(){
        Collection col = new Vector();
        test(col);
        System.out.println("inicio(): col: " + col);
    }

    public void test(Collection col){
        col.add( new Integer(1) );
        System.out.println("test(): col: " + col);
    }

}
4

4 回答 4

3

您正在将 REFERENCE 的副本传递给对象实例。

如果直接更改对象。例如col.add,它将改变底层对象。

如果您更改它所引用的对象。例如new Integer(),它只会改变局部变量的引用。

于 2013-02-27T10:54:18.913 回答
3

不是一回事。

entero = new Integer(5);

更改参考entero,而

col.add(new Integer(1));

更改引用的对象col

于 2013-02-27T10:54:22.127 回答
-2

简而言之:原始类型和“原始包装器(Integer、Long、Short、Double、Float、Character、Byte、Boolean)”不能通过引用进行更改。

检查http://en.wikipedia.org/wiki/Immutable_object了解详情

于 2013-02-27T10:55:49.457 回答
-4

{ 这里创建的对象会在大括号(}) 结束后销毁

}

于 2013-02-27T11:04:07.427 回答