传递给构造函数后,对象不会更改。为什么?

时间:2016-05-24 23:34:54

标签: java object constructor pass-by-reference pass-by-value

您好我有以下代码:

public class Dog {
    private String name;
    private int size;
    public Dog(String name, int size){
        this.name = name;
        this.size = size;
    }
    public void changeSize(int newSize){
        size = newSize;
    }
    public String toString(){
        return ("My name "+name+" my size "+ size);
    }
}

public class PlayWithDog {
    public PlayWithDog(Dog dog){
        dog = new Dog("Max", 12);
    }

    public void changeDogSize(int newSize, Dog dog){
        dog.changeSize(newSize);
    }


    public static void main(String[] args){
        Dog dog1 = new Dog("Charlie", 5);
        PlayWithDog letsPlay = new PlayWithDog(dog1); 
        System.out.println(dog1.toString()); // does not print Max.. Prints Charlie... .. Does not change... WHYYY???
        letsPlay.changeDogSize(8, dog1);
        System.out.println(dog1.toString()); // passing by value.. Expected Result... changes the size
        dog1 = new Dog("Max", 12);
        System.out.println(dog1.toString()); // Expected result again.. prints Max
    }
}

我知道Java总是按价值传递一切。无论是原始类型还是对象。但是,在对象中,传递了引用,这就是为什么可以在通过方法传递对象之后修改它。我想测试当对象通过不同类的构造函数时是否适用相同的东西。我发现对象没有改变。这对我来说似乎很奇怪,因为我只是在构造函数中传递了对象的引用。它应该改变......?

1 个答案:

答案 0 :(得分:0)

  

我知道Java总是按值传递所有内容

这正是您的构造函数对传入的对象不执行任何操作的原因。您可以更改传入的对象的状态,但不能更改原始变量的引用。