Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
String and Final

From http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html I can read that:

Strings are constant; their values cannot be changed after they are created. 

Does this mean that a final String does not really make sense in Java, in the sense that the final attribute is somehow redundant?

share|improve this question
Declaring a variable final has nothing to do with Object you've assigned to it. – Brian Roach Apr 19 '12 at 17:21
The Object itself is immutable, but the reference to it might be mutable. Making it final makes the reference immutable as well. – Louis Wasserman Apr 19 '12 at 17:40
Thanks for all answers and comments. Sorry for duplicating. – Campa Apr 19 '12 at 18:36

marked as duplicate by Brian Roach, Mike Kwan, Andy Thomas-Cramer, Perception, Daniel Fischer Apr 20 '12 at 12:24

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 2 down vote accepted

The String object is immutable but what it is is actually a reference to a String object which could be changed.

For example:

String someString = "Lala";

You can reassign the value held by this variable (to make it reference a different string):

someString = "asdf";

However, with this:

final String someString = "Lala";

Then the above reassignment would not be possible and would result in a compile-time error.

share|improve this answer

final refers to the variable, not the object, so yes, it make sense.

e.g.

final String s = "s";
s = "a"; // illegal
share|improve this answer

References are final, Objects are not. You can define a mutable object as final and change state of it. What final ensures is that the reference you are using cannot ever point to another object again.

share|improve this answer

It makes sense. The final keyword prevents future assignments to the variable. The following would be an error in java:

final String x = "foo";
x = "bar" // error on this assignment
share|improve this answer

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