String and Final - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:30:47Zhttp://stackoverflow.com/feeds/question/874978http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/874978/string-and-final3String and FinalGarhwali Bhai2009-05-17T16:52:55Z2009-05-18T09:04:48Z
<p>What is difference between in the following statements</p>
<pre><code>String name = "Tiger";
final String name ="Tiger";
</code></pre>
<p>Although the <code>String</code> class is <code>final</code> class, why do we need to create a String "CONSTANT" variable as final?</p>
http://stackoverflow.com/questions/874978/string-and-final/874986#87498627Answer by Ayman Hourieh for String and FinalAyman Hourieh2009-05-17T16:55:10Z2009-05-17T17:01:35Z<p><code>final</code> in this context means that the variable <code>name</code> can only be assigned once. Assigning a different <code>String</code> object to it again results in a compile error.</p>
<p>I think the source of the confusion here is that the <code>final</code> keyword can be used in several different contexts:</p>
<ul>
<li>final class: The class cannot be subclassed.</li>
<li>final method: The method cannot be overridden.</li>
<li>final variable: The variable can only be assigned once.</li>
</ul>
<p>See the Wikipedia article on <a href="http://en.wikipedia.org/wiki/Final%5F%28Java%29" rel="nofollow">final in Java</a> for examples on each case.</p>
http://stackoverflow.com/questions/874978/string-and-final/875010#8750101Answer by Nathan Feger for String and FinalNathan Feger2009-05-17T17:06:53Z2009-05-17T17:06:53Z<p>You are confusing immutable with final.</p>
<p>String, like Integer and Long, is an immutable class in that the internal data is protected from modification through encapsulation. </p>
<p>However, like Ayman said, final refers to the pointer to the string.</p>
http://stackoverflow.com/questions/874978/string-and-final/875016#8750161Answer by Neil Coffey for String and FinalNeil Coffey2009-05-17T17:08:41Z2009-05-17T17:08:41Z<p>Remember that <a href="http://www.javamex.com/tutorials/synchronization%5Ffinal.shtml" rel="nofollow">Java final keyword</a> serves two purposes in this case:</p>
<ul>
<li>it means the reference cannot be set to another String-- i.e. you cannot subsequently do "name = ...";</li>
<li>but crucially, it means that the reference is <strong>correctly published to other threads</strong> (see linked article for more details, or works such as Goetz et al, "Java Concurrency in Practice".</li>
</ul>
http://stackoverflow.com/questions/874978/string-and-final/875019#8750194Answer by Steve Jessop for String and FinalSteve Jessop2009-05-17T17:09:38Z2009-05-17T17:09:38Z<p>"final" means different things in the two cases.</p>
<p>The java.lang.String class is final. This means you can't inherit from it.</p>
<p>The variable "name" is final, meaning that you can't change it to point to a different instance of String. So a non-final String variable isn't a constant, because you could read it at two different times and get different values.</p>
<p>As it happens, Java string objects are also immutable. This means that you cannot modify the value which a particular String object represents. Compare this with an array - you can replace the first element of an array object with a different object, but you can't replace the first character of a String object with a different char. This is why String.replace() returns a new string - it can't modify the old one.</p>
<p>One reason that String is final is to prevent an instance of a subclass of String, which implements mutable behaviour, being passed in place of a String.</p>
<p>But whether you can modify a particular object, and whether you can assign a different object to a variable, are completely different concepts. One is a property of String objects, and the other is a property of String variables, which are references to String objects.</p>
http://stackoverflow.com/questions/874978/string-and-final/876799#8767991Answer by pgras for String and Finalpgras2009-05-18T09:04:48Z2009-05-18T09:04:48Z<p>Have a look at <a href="http://renaud.waldura.com/doc/java/final-keyword.shtml" rel="nofollow">The final word on the final keyword</a>.</p>
<pre><code>String name = "scott";
name = "tiger"; // OK
final String gender = "male";
gender = "female"; // won't compile you cannot reassign gender cause it's final
</code></pre>