When to use final - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T07:28:39Z http://stackoverflow.com/feeds/question/154314 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/154314/when-to-use-final 14 When to use final eaolson 2008-09-30T18:25:04Z 2009-10-10T18:45:42Z <p>I've found a couple of references (<a href="http://www.javapractices.com/topic/TopicAction.do?Id=23" rel="nofollow">for example</a>) that suggest using <code>final</code> as much as possible and I'm wondering how important that is. This is mainly in the the context of method parameters and local variables, not final methods or classes. For constants, it makes obvious sense.</p> <p>On one hand, the compiler can make some optimizations and it makes the programmer's intent clearer. On the other hand, it adds verbosity and the optimizations may be trivial.</p> <p>Is it something I should make an effort to remember to do?</p> http://stackoverflow.com/questions/154314/when-to-use-final/154329#154329 3 Answer by mattlant for When to use final mattlant 2008-09-30T18:28:30Z 2008-09-30T18:28:30Z <p>Here is a related post to look over: <a href="http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java">http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java</a></p> http://stackoverflow.com/questions/154314/when-to-use-final/154342#154342 9 Answer by Peter Hilton for When to use final Peter Hilton 2008-09-30T18:31:04Z 2008-09-30T18:31:04Z <blockquote> <p>Is it something I should make an effort to remember to do?</p> </blockquote> <p>No, if you are using Eclipse, because you can configure a Save Action to automatically add these <em>final</em> modifiers for you. Then you get the benefits for less effort.</p> http://stackoverflow.com/questions/154314/when-to-use-final/154347#154347 1 Answer by Mike Stone for When to use final Mike Stone 2008-09-30T18:31:56Z 2008-09-30T18:31:56Z <p>Well, this all depends on your style... if you LIKE seeing the final when you won't be modifying the variable, then use it. If you DON'T LIKE seeing it... then leave it out.</p> <p>I personally like as little verbosity as possible, so I tend to avoid using extra keywords that aren't really necessary.</p> <p>I prefer dynamic languages though, so it's probably no surprise I like to avoid verbosity.</p> <p>So, I would say just pick the direction you are leaning towards and just go with it (whatever the case, try to be consistent).</p> <p><hr /></p> <p>As a side note, I have worked on projects that both use and don't use such a pattern, and I have seen no difference in the amount of bugs or errors... I don't think it is a pattern that will hugely improve your bug count or anything, but again it is style, and if you like expressing the intent that you won't modify it, then go ahead and use it.</p> http://stackoverflow.com/questions/154314/when-to-use-final/154375#154375 1 Answer by Sean for When to use final Sean 2008-09-30T18:38:05Z 2008-09-30T18:38:05Z <p>Somewhat of a trade-off as you mention, but I prefer explicit use of something over implicit use. This will help remove some ambiguity for future maintainers of code - even if it is just you. </p> http://stackoverflow.com/questions/154314/when-to-use-final/154403#154403 0 Answer by anjanb for When to use final anjanb 2008-09-30T18:45:50Z 2009-10-10T18:45:42Z <p>If you have inner (anonymous) classes, and the method needs to access variable of the containing method, you need to have that variable as final.</p> <p>Other than that, what you've said is right.</p> http://stackoverflow.com/questions/154314/when-to-use-final/154481#154481 1 Answer by Eric Rath for When to use final Eric Rath 2008-09-30T19:06:11Z 2008-09-30T19:06:11Z <p>The development-time benefits of "final" are at least as significant as the run-time benefits. It tells future editors of the code something about your intentions.</p> <p>Marking a class "final" indicates that you've not made an effort during design or implementation of the class to handle extension gracefully. If the readers can make changes to the class, and want to remove the "final" modifier, they can do so at their own risk. It's up to them to make sure the class will handle extension well.</p> <p>Marking a variable "final" (and assigning it in the constructor) is useful with dependency injection. It indicates the "collaborator" nature of the variable.</p> <p>Marking a method "final" is useful in abstract classes. It clearly delineates where the extension points are. </p> http://stackoverflow.com/questions/154314/when-to-use-final/154510#154510 19 Answer by Alex Miller for When to use final Alex Miller 2008-09-30T19:14:50Z 2008-09-30T19:14:50Z <p>Obsess over:</p> <ul> <li>Final fields - Marking fields as final forces them to be set by end of construction, making that field reference immutable. This allows safe publication of fields and can avoid the need for synchronization on later reads. (Note that for an object reference, only the field reference is immutable - things that object reference refers to can still change and that affects the immutability.)</li> <li>Final static fields - Although I use enums now for many of the cases where I used to use static final fields.</li> </ul> <p>Consider but use judiciously:</p> <ul> <li>Final classes - Framework/API design is the only case where I consider it.</li> <li>Final methods - Basically same as final classes. If you're using template method patterns like crazy and marking stuff final, you're probably relying too much on inheritance and not enough on delegation. </li> </ul> <p>Ignore unless feeling anal:</p> <ul> <li>Method parameters and local variables - I RARELY do this largely because I'm lazy and I find it clutters the code. I will fully admit that marking parameters and local variables that I'm not going to modify is "righter". I wish it was the default. But it isn't and I find the code more difficult to understand with finals all over. If I'm in someone else's code, I'm not going to pull them out but if I'm writing new code I won't put them in. One exception is the case where you have to mark something final so you can access it from within an anonymous inner class. </li> </ul> http://stackoverflow.com/questions/154314/when-to-use-final/154523#154523 3 Answer by Alvin for When to use final Alvin 2008-09-30T19:17:52Z 2008-09-30T19:17:52Z <p>If you are writing a application that someone will have to read the code after, say, 1 year, then yes, use final on variable that should not be modified all the time. By doing this, your code will be more "self-documenting" and you also reduce the chance for other developers to do silly things like using a local constant as a local temporary variable. </p> <p>If you're writing some throwaway code, then, nah, don't bother to identify all the constant and make them final.</p> http://stackoverflow.com/questions/154314/when-to-use-final/154540#154540 1 Answer by Javamann for When to use final Javamann 2008-09-30T19:22:02Z 2008-09-30T19:22:02Z <p>I will use final as much as I can. Doing so will flag if you unintentionally change the field. I also set Method parameters to final. Doing so I have caught several bug from code I have taken over when they try to 'set' a parameter forgetting Java passes by value.</p> http://stackoverflow.com/questions/154314/when-to-use-final/155811#155811 0 Answer by ykaganovich for When to use final ykaganovich 2008-10-01T01:09:09Z 2008-10-01T01:09:09Z <p>It's not clear from the question whether this is obvious, but making a method parameter final affects only the body of the method. It does <strong>NOT</strong> convey any interesting information about the method's intentions to the invoker. The object being passed in can still be mutated within the method (finals are not consts), and the scope of the variable is within the method.</p> <p>To answer your precise question, I wouldn't bother making an instance or local variable (including method parameters) final unless the code required it (e.g. the variable is referenced from an inner class), or to clarify some really complicated logic.</p> <p>For instance variables, I would make them final if they are logically constants.</p> http://stackoverflow.com/questions/154314/when-to-use-final/155881#155881 1 Answer by Sam Stokes for When to use final Sam Stokes 2008-10-01T01:41:39Z 2008-10-01T01:41:39Z <p>I've found marking method parameters and locals as <code>final</code> is useful as a refactoring aid when the method in question is an incomprehensible mess several pages long. Sprinkle <code>final</code> liberally, see what "cannot assign to final variable" errors the compiler (or your IDE) throws up, and you just might discover why the variable called "data" ends up null even though several (out of date) comments swear that can't happen.</p> <p>Then you can fix some of the errors by replacing the reused variables with new variables declared closer to the point of use. Then you find you can wrap whole parts of the method in scoping braces, and suddenly you're one IDE keypress away from "Extract Method" and your monster just got more comprehensible.</p> <p>If your method is <em>not</em> already an unmaintainable wreck, I guess there might be value in making stuff final to discourage people from turning it into said wreck; but if it's a short method (see: not unmaintainable) then you risk adding a lot of verbosity. In particular, Java function signatures are hard enough to fit into 80 characters as it is without adding six more per argument!</p> http://stackoverflow.com/questions/154314/when-to-use-final/155916#155916 0 Answer by Oscar Reyes for When to use final Oscar Reyes 2008-10-01T01:55:52Z 2008-10-01T01:55:52Z <p>It is useful in parameters to avoid change the parameter value by accident and introduce a subtle bug. I use to ignore this recommendation but after spending some 4 hrs. in a horrible method ( with hundreds of lines of code and multiple fors, nested ifs and all sort of bad practices ) I would recommend you to do it.</p> <pre><code> public int processSomethingCritical( final int x, final int y ){ // hundreds of lines here // for loop here... int x2 = 0; x++; // bug aarrgg... // hundreds of lines there // if( x == 0 ) { ... } </code></pre> <p>Of course in a perfect world this wouldn't happen, but.. well.. sometimes you have to support others code. :( </p>