Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
String s = ...;

s = s.substring(1);

Is this possible? I thought you can't change a String object in Java.

share|improve this question
1  
You would be correct if only s.substring(1) would change the string in s. But you are assigning a new string to s. – Felix Kling Aug 3 '10 at 15:38
1  
You're just changing the reference s, not the original String itself. A minor style point - it's often better to create a new, descriptively named local variable rather than re-using variables like this. – mikera Aug 3 '10 at 15:41
5  
Don't confuse the objects with the references. Objects may be mutable or immutable. References may be final or not. Making a reference final does not make the object immutable. Immutable objects can be referred to by references which doesn't have to be final. – polygenelubricants Aug 3 '10 at 15:54

7 Answers

String objects are immutable. String references, however, are mutable. Above, s is a reference.

share|improve this answer
1  
+1 short and correct. The initial value of s is still there, unchanged and possibly now unreferenced, in memory - waiting to get GC'd. However, the reference s now points to a new, likewise immutable object, created by the substring method. – delnan Aug 3 '10 at 15:39
3  
Dang, I wish I had seen this Q before you to get myself a bunch of easy rep. :) +1 – iandisme Aug 3 '10 at 15:41

Yes, String objects are immutable.

The variable s is a reference to an object, and the reference itself can have the object it points to change -- reassigning the reference does not affect the object it points to.

The String.substring method is actually returning a new instance of a String, so the original String object is left untouched.

The following is a simple example to show that the original String is not altered by the substring method::

String s = "Hello!";
s.substring(1);

System.out.println(s);   // Prints "Hello!"

The above example will print "Hello!" because the substring method will return a new String rather than affect the original one. The original String cannot be altered because it is immutable.

Compare the above with the following:

String s = "Hello!";
s = s.substring(1);

System.out.println(s);   // Prints "ello!"

In this example, the reference to s is changed to the String returned by the substring method, so when the String associated with s is printed by `System.out.println", the string that is output will be "ello!"

share|improve this answer

String objects are immutable, meaning that the value of the instance referred to by s cannot change.

Your code does not mutate the instance.
Rather, it changes the s reference to refer to a new string instance.

For example:

String a = "1";
String b = a;
a = "2";

After executing this code, b is still "1".
The line b = a sets b to refer to the same "1" instance that a currently refers to.
When you subsequently write a = "2", you are changing the a variable to refer to a different ("2") instance.
However, the original "1" instance, which b still refers to, has not changed.

share|improve this answer

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.

share|improve this answer

So:

String foo = "foo";
foo.substring(1);
System.out.println(foo);

//of course..
foo = "aa";
System.out.println(foo);
share|improve this answer
This is really a comment, not an answer to the question. Please use "add comment" to leave feedback for the author. – fglez Aug 21 '12 at 14:58

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.

share|improve this answer

Test it:

String s = "Test";
String j = s;

s = s.substring(1);

s is now T and j is still Test.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.