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?
Objectitself is immutable, but the reference to it might be mutable. Making itfinalmakes the reference immutable as well. – Louis Wasserman Apr 19 '12 at 17:40