I created the following test to see how Java handles objects and it's confusing me quite a bit.
public class MyClass
{
public String text = "original";
public MyClass(String text)
{
this.text = text;
}
}
Then i created the following 2 scenarios:
1.
String object1 = new String("original");
String object2 = new String("original");
object2 = object1;
object2 = "changed";
System.out.println(object1);
System.out.println(object2);
Result:
original
changed
2.
MyClass object1 = new MyClass("object1");
MyClass object2 = new MyClass("object2");
object2 = object1;
object2.text = "changed";
System.out.println(object1.text);
System.out.println(object2.text);
Result:
changed
changed
Now why is the text field shared like a static field?
