How come the object "person1" and the object "person2" are the same?

376 Views Asked by At

In this program, whenever you change person1 or person 3, they become contain the same values. I tried going through each step in pseudo code, but I get lost on the reasoning behind these two objects always being equal. Could you help explain these steps? I would really love to understand. Thank you for your time.

public class References1
{
    public static void main (String[] args)
    {
        Person person1 = new Person ("Rachel", 6);
        Person person2 = new Person ("Elly", 4);
        Person person3 = new Person ("Sarah", 19);

        System.out.println ("\nThe three original people...");
        System.out.println (person1 + ", " + person2 + ", " + person3);

        // Reassign people
        person1 = person2;
        person2 = person3;
        person3 = person1;


        System.out.println("\nThe three people reassigned...");
        System.out.println (person1 + ", " + person2 + ", " + person3);

        System.out.println();
        System.out.println ("Changing the second name to Bozo...");
        person2.changeName ("Bozo");
        System.out.println (person1 + ", " + person2 + ", " + person3);

        System.out.println();
        System.out.println ("Changing the third name to Clarabelle...");

        person3.changeName ("Clarabelle");
        System.out.println (person1 + ", " + person2 + ", " + person3);
        System.out.println();
        System.out.println ("Changing the first name to Harpo...");
        person1.changeName("Harpo");
        System.out.println (person1 + ", " + person2 + ", " + person3);
    }
}
4

There are 4 best solutions below

0
On BEST ANSWER

These are the lines causing your problem:

// Reassign people
person1 = person2;
person2 = person3;
person3 = person1;

If the variables had the following starting values:

person1 = "A";
person2 = "B";
person3 = "C";

... and then you ran it through your code:

person1 = person2 -> person1 is now set to "B" (the value "A" is discarded)

person2 = person3 -> person2 is now set to "C"

person3 = person1 -> person3 is now set to the value of person1 which is "B"

So now variable person1 and person3 are set to the same object.

0
On

person1 and person3 are referring to the same physical object i.e. person2 . All because of these assignments:

person1 = person2;    
person3 = person2;
1
On

"In this program, whenever you change person1 or person 3, they become contain the same value...".

Not quite:

1) You "orphaned" Rachel with person1 = person2;, then you orphaned Sarah. At the end, variables person1 and person3 BOTH REFER TO THE SAME OBJECT (Elly).

2) At this point, the objects for Rachel and Sarah are both eligible for garbage collection: they cannot be accessed.

3) Also, any change you make to "Elly" will be reflected in all three variables. Because all three reference the same underlying object.

Here is a good link that explains the notion of "object reference" in more detail:

References to objects

0
On

Your Person references points to the same Person objects. Here is an illustration of the effects of your assignments. enter image description here