Do you "final"ize local variables and method parameters in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:57:08Z http://stackoverflow.com/feeds/question/316352 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java 13 Do you "final"ize local variables and method parameters in Java? Julien Chastang 2008-11-25T04:16:23Z 2009-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#316357 5 Answer by SCdF for Do you "final"ize local variables and method parameters in Java? SCdF 2008-11-25T04:22:47Z 2008-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 -1 Answer by Elie for Do you "final"ize local variables and method parameters in Java? Elie 2008-11-25T04:23:39Z 2008-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#316365 0 Answer by javamonkey79 for Do you "final"ize local variables and method parameters in Java? javamonkey79 2008-11-25T04:27:23Z 2008-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#316374 2 Answer by Uri for Do you "final"ize local variables and method parameters in Java? Uri 2008-11-25T04:35:26Z 2008-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#316472 0 Answer by Hemal Pandya for Do you "final"ize local variables and method parameters in Java? Hemal Pandya 2008-11-25T05:54:35Z 2008-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#316558 0 Answer by boutta for Do you "final"ize local variables and method parameters in Java? boutta 2008-11-25T07:10:13Z 2008-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 -1 Answer by Arne Burmeister for Do you "final"ize local variables and method parameters in Java? Arne Burmeister 2008-11-25T07:33:50Z 2008-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#316787 15 Answer by rjray for Do you "final"ize local variables and method parameters in Java? rjray 2008-11-25T09:15:10Z 2008-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#338580 2 Answer by Motlin for Do you "final"ize local variables and method parameters in Java? Motlin 2008-12-03T20:29:20Z 2009-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#1192129 0 Answer by Coward for Do you "final"ize local variables and method parameters in Java? Coward 2009-07-28T05:53:05Z 2009-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#1353430 1 Answer by Thorbjørn Ravn Andersen for Do you "final"ize local variables and method parameters in Java? Thorbjørn Ravn Andersen 2009-08-30T08:24:06Z 2009-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>