String s = ...;
s = s.substring(1);
Is this possible? I thought you can't change a String object in Java.
Is this possible? I thought you can't change a String object in Java. |
|||
|
String objects are immutable. String references, however, are mutable. Above, |
|||||||||
|
|
Yes, The variable The The following is a simple example to show that the original
The above example will print "Hello!" because the Compare the above with the following:
In this example, the reference to |
|||
|
|
|
String objects are immutable, meaning that the value of the instance referred to by Your code does not mutate the instance. For example:
After executing this code, |
|||
|
|
|
Here you are creating a new string and assigning it to a pre-used reference. The original string that s referred to is garbage collected. No strings actually changed. |
|||
|
|
|
So:
|
|||
|
|
When you use String s = "abc", you create a String reference to a String object that has the immutable value "abc". Then, when you say s = s.substring(1);, you assign s to a newly created String object that contains "bc" - but the original object is unchanged. This is a common cause of errors, because if you did not assign the value, you may get unexpected results. Many novice Java developers will use such methods like trim(), not realizing that trim() doesn't affect the String. s.trim() <-- Does nothing to s, returns a trimmed string - this is a bug. s = s.trim() <-- Stores the trimmed string - this is correct. |
|||
|
|
|
Test it:
|
|||
|
|
s.substring(1)would change the string ins. But you are assigning a new string tos. – Felix Kling Aug 3 '10 at 15:38finalor not. Making a referencefinaldoes not make the object immutable. Immutable objects can be referred to by references which doesn't have to befinal. – polygenelubricants Aug 3 '10 at 15:54