Do you "final"ize local variables and method parameters in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T20:57:08Zhttp://stackoverflow.com/feeds/question/316352http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java13Do you "final"ize local variables and method parameters in Java?Julien Chastang2008-11-25T04:16:23Z2009-08-30T08:24:06Z
<p>In Java, you can qualify local variables and method parameters with the final keyword.</p>
<pre><code>public static void foo(final int x) {
final String qwerty = "bar";
}
</code></pre>
<p>Doing so results in not being able to reassign x and qwerty in the body of the method.</p>
<p>This practice nudges your code in the direction of immutability which is generally considered a plus. But, it also tends to clutter up code with "final" showing up everywhere. What is your opinion of the final keyword for local variables and method parameters in Java?</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316357#3163575Answer by SCdF for Do you "final"ize local variables and method parameters in Java?SCdF2008-11-25T04:22:47Z2008-11-25T04:22:47Z<p>My personal opinion is that it is a waste of time. I believe that the visual clutter and added verbosity is not worth it.</p>
<p>I have never been in a situation where I have reassigned (remember, this does not make objects immutable, all it means is that you can't reassign another reference to a variable) a variable in error.</p>
<p>But, of course, it's all personal preference ;-)</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316360#316360-1Answer by Elie for Do you "final"ize local variables and method parameters in Java?Elie2008-11-25T04:23:39Z2008-11-25T04:29:27Z<p>Why would you want to? You wrote the method, so anyone modifying it could always remove the final keyword from qwerty and reassign it. As for the method signature, same reasoning, although I'm not sure what it would do to subclasses of your class... they may inherit the final parameter and even if they override the method, be unable to de-finalize x. Try it and find out if it would work.</p>
<p>The only real benefit, then, is if you make the parameter immutable and it carries over to the children. Otherwise, you're just cluttering your code for no particularly good reason. If it won't force anyone to follow your rules, you're better off just leaving a good comment as you why you shouldn't change that parameter or variable instead of giving if the final modifier.</p>
<p><em>Edit</em></p>
<p>In response to a comment, I will add that if you are seeing performance issues, making your local variables and parameters final can allow the compiler to optimize your code better. However, from the perspective of immutability of your code, I stand by my original statement.</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316365#3163650Answer by javamonkey79 for Do you "final"ize local variables and method parameters in Java?javamonkey792008-11-25T04:27:23Z2008-11-25T04:27:23Z<p>Because of the (occasionally) confusing nature of Java's "<a href="http://stackoverflow.com/questions/40480/is-java-pass-by-reference">pass by reference</a>" behavior I definitely agree with finalizing parameter var's. </p>
<p>Finalizing local var's seems somewhat overkill IMO.</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316374#3163742Answer by Uri for Do you "final"ize local variables and method parameters in Java?Uri2008-11-25T04:35:26Z2008-11-25T04:35:26Z<p>In the case of local variables, I tend to avoid this. It causes visual clutter, and is generally unnecessary - a function should be short enough or focus on a single impact to let you quickly see that you are modify something that shouldn't be.</p>
<p>In the case of magic numbers, I would put them as a constant private field anyway rather than in the code.</p>
<p>I only use final in situations where it is necessary (e.g., passing values to anonymous classes).</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316472#3164720Answer by Hemal Pandya for Do you "final"ize local variables and method parameters in Java?Hemal Pandya2008-11-25T05:54:35Z2008-11-25T05:54:35Z<p>I let Eclipse do it for me when they are being used in an anonymous class, which is increasing due to my use of Google Collection API.</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316558#3165580Answer by boutta for Do you "final"ize local variables and method parameters in Java?boutta2008-11-25T07:10:13Z2008-11-25T07:10:13Z<p>We do it here for the local variables if we think they will not be reassigned or should not be reassigned.</p>
<p>The parameters are not final since we have a Checkstyle-Check which checks for reassigning parameters. Of course nobody would ever want to reassign a parameter variable.</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316585#316585-1Answer by Arne Burmeister for Do you "final"ize local variables and method parameters in Java?Arne Burmeister2008-11-25T07:33:50Z2008-12-03T23:00:40Z<p>final has three good reasons:</p>
<ul>
<li>instance variables set by constructor only become immutable</li>
<li>methods not to be overridden become final, use this with real reasons, not by default</li>
<li>local variables or parameters to be used in anonimous classes inside a method need to be final</li>
</ul>
<p>Like methods, local variables and parameters need not to be declared final. As others said before, this clutters the code becoming less readable with very little efford for compiler performace optimisation, this is no real reason for most code fragments.</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316787#31678715Answer by rjray for Do you "final"ize local variables and method parameters in Java?rjray2008-11-25T09:15:10Z2008-11-25T09:15:10Z<p>You should try to do this, whenever it is appropriate. Besides serving to warn you when you "accidentally" try to modify a value, it provides information to the compiler that can lead to better optimization of the class file. This is one of the points in the book, "Hardcore Java" by Robert Simmons, Jr. In fact, the book spends all of its second chapter on the use of final to promote optimizations and prevent logic errors. Static analysis tools such as PMD and the built-in SA of Eclipse flag these sorts of cases for this reason.</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/338580#3385802Answer by Motlin for Do you "final"ize local variables and method parameters in Java?Motlin2008-12-03T20:29:20Z2009-01-05T17:29:16Z<p>Yes do it.</p>
<p>It's about readability. It's easier to reason about the possible states of the program when you know that variables are assigned once and only once.</p>
<p>A decent alternative is to turn on the IDE warning when a parameter is assigned, or when a variable (other than a loop variable) is assigned more than once.</p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/1192129#11921290Answer by Coward for Do you "final"ize local variables and method parameters in Java?Coward2009-07-28T05:53:05Z2009-07-28T05:53:05Z<p>"final" parameter is just silly , or kind of showing off, I think . </p>
http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/1353430#13534301Answer by Thorbjørn Ravn Andersen for Do you "final"ize local variables and method parameters in Java?Thorbjørn Ravn Andersen2009-08-30T08:24:06Z2009-08-30T08:24:06Z<p>Making a parameter final <em>guarantees</em> that the value used at any location in the method refers to the value passed. Otherwise you have to parse mentally all the code above a given location to know what value the parameter has at that point.</p>
<p>Hence, <em>not</em> using final makes your code less readable, and maintainable, all by itself :)</p>
<p>Final local variables depend on intent, and is less important in my point of view. Depends on what goes on.</p>