public static void main(String[] args)
{
String name = "john";
StringTest obj = new StringTest(name);
name = "peter";
System.out.println(obj.name);
}
}
class StringTest{
String name;
StringTest(String name)
{
this.name = name;
}
}
Now, since the string name has been reassigned from "john" to "peter" i expect it to print peter but it prints john. Has string being immutable causes a new object to be created when it is reassigned or what is the correct explanation for this?
Also when i try this with Integer object, the behaviour is same! Anyone please explain the reason for this behaviour
Java uses pass-by-value, which means that you pass the value of
name
, not the reference.Changing the value of
name
after you already created theStringTest
instance won't affect yourStringTest
in any way.