Using "final" modifier whenever applicable in java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:56:57Z http://stackoverflow.com/feeds/question/137868 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java 20 Using "final" modifier whenever applicable in java surajs 2008-09-26T05:05:59Z 2009-06-10T19:29:58Z <p>In Java, there is a practice of declaring every variable (local or class), parameter final if they really are. Though this makes the code a lot more verbose, this helps in easy reading/grasping of the code and also prevents mistakes as the intention is clearly marked.</p> <p>What are your thoughts on this and what do you follow?</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137875#137875 -3 Answer by SCdF for Using "final" modifier whenever applicable in java SCdF 2008-09-26T05:09:40Z 2008-09-26T21:48:09Z <p>I have never been in a situation where having a final keyword on a variable has stopped me from making a mistake, so for the moment I think it's a giant waste of time.</p> <p>Unless there is a real reason for doing it (as in you want to make a specific point about that variable being final) I would rather not do it since I find it makes the code less readable.</p> <p>If, however, you don't find it makes the code harder to read or longer to write then by all means go for it.</p> <p><strong>Edit:</strong> As a clarification (and an attempt to win back down-votes), I'm not saying don't mark constants as final, I'm saying don't do stuff like:</p> <pre><code>public String doSomething() { final String first = someReallyComplicatedExpressionToGetTheString(); final String second = anotherReallyComplicatedExpressionToGetAnother(); return first+second; } </code></pre> <p>It just makes code (in my opinion) harder to read.</p> <p>It's also worth remembering that <strong>all</strong> final does is prevent you from reassigning a variable, it doesn't make it immutable or anything like that.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137889#137889 15 Answer by HowardSP for Using "final" modifier whenever applicable in java HowardSP 2008-09-26T05:18:13Z 2008-09-26T05:24:17Z <p>You really need to understand the full use of the final keyword before using it. It can apply to and has differing affects on variables, fields, methods and classes </p> <p>I’d recommend checking out the article linked to below for more details.</p> <p><a href="http://renaud.waldura.com/doc/java/final-keyword.shtml" rel="nofollow">Final Word On the final Keyword </a></p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137895#137895 2 Answer by jjnguy for Using "final" modifier whenever applicable in java jjnguy 2008-09-26T05:21:33Z 2008-09-26T15:17:03Z <p>I hardly use final on methods or classes because I like allowing people to override them.</p> <p>Otherwise, I only use finally if it is a <code>public/private static final type SOME_CONSTANT;</code></p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137918#137918 11 Answer by Lars Westergren for Using "final" modifier whenever applicable in java Lars Westergren 2008-09-26T05:31:56Z 2008-09-26T05:31:56Z <p>Effective Java has an item that says "Favour immutable objects". Declaring fields as final helps you take some small steps towards this, but there is of course much more to truly immutable objects than that.</p> <p>If you know that objects are immutable they can be shared for reading among many threads/clients without synchronization worries, and it is easier to reason about how the program runs.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137946#137946 10 Answer by Johan Pelgrim for Using "final" modifier whenever applicable in java Johan Pelgrim 2008-09-26T05:45:57Z 2008-09-26T05:58:57Z <p>I think it all has to do with good coding style. Of course you can write good, robust programs without using a lot of <code>final</code> modifiers anywhere, but when you think about it... </p> <p>Adding <code>final</code> to all things which <em>should not</em> change simply narrows down the possibilities that you (or the next programmer, working on your code) will misinterpret or misuse the thought process which resulted in your code. At least it should ring some bells when they now want to change your previously immutable thing.</p> <p>At first, it kind of looks awkward to see a lot of <code>final</code> keywords in your code, but pretty soon you'll stop noticing the word itself and will simply think, <em>that-thing-will-never-change-from-this-point-on</em> (you can take it from me ;-)</p> <p>I think it's good practice. I am not using it all the time, but when I can and it makes sense to label something <code>final</code> I'll do it.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137955#137955 3 Answer by Omnipotent for Using "final" modifier whenever applicable in java Omnipotent 2008-09-26T05:51:44Z 2008-09-26T12:21:40Z <p>Final when used with variables in Java provides a substitute for constant in C++. So when final and static is used for a variable it becomes immutable. At the same time makes migrated C++ programmers pretty happy ;-)</p> <p>When used with reference variables it does not allow you to re-reference the object, though the object can be manipulated.</p> <p>When final is used with a method, it does not allow the method to be over-ridden by the subclasses.</p> <p>Once the usage is very clear it should be used with care. It mainly depends on the design as using final on the method would not help polymorphism. </p> <p>One should only use it for variables when you are damn sure that the value of the variable will/should never be changed. Also ensure that you follow the coding convention encouraged by SUN.for eg: final int COLOR_RED = 1; (Upper case seperated by underscore)</p> <p>With a reference variable, use it only when we need a an immutable reference to a particular object.</p> <p>Regarding the readability part, ensue that comments play a very important role when using the final modifier.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137964#137964 -1 Answer by Hans Sjunnesson for Using "final" modifier whenever applicable in java Hans Sjunnesson 2008-09-26T05:53:39Z 2008-09-26T05:53:39Z <p>Using anonymous local classes for event listeners and such is a common pattern in Java. The most common use of the final keyword is to make sure that variables in scope are accessible to the even listener.</p> <p>However, if you find yourself being required to put a lot of final statements in your code. That might be a good hint you're doing something wrong.</p> <p>The article posted above gives this example:</p> <pre><code>public void doSomething(int i, int j) { final int n = i + j; // must be declared final Comparator comp = new Comparator() { public int compare(Object left, Object right) { return n; // return copy of a local variable } }; } </code></pre> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137977#137977 0 Answer by anjanb for Using "final" modifier whenever applicable in java anjanb 2008-09-26T06:02:44Z 2008-09-26T06:02:44Z <p>I use it for constants inside and outside methods.</p> <p>I only sometimes use it for methods because I don't know if a subclass would NOT want to override a given method(for whatever reasons).</p> <p>As far as classes, only for some infrastructure classes, have I used final class.</p> <p>IntelliJ IDEA warns you if a function parameter is written to inside a function. So, I've stopped using final for function arguments. I don't see them inside java Runtime library as well.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/138072#138072 0 Answer by phjr for Using "final" modifier whenever applicable in java phjr 2008-09-26T06:54:40Z 2008-09-26T06:54:40Z <p>Using final <strong>for constants</strong> is strongly encouraged. However, I wouldn't use it for methods or classes (or at least think about it for a while), because it makes <strong>testing</strong> harder, if not impossible. If you absolutely must make a class or method final, make sure this class implements some interface, so you can have a <strong>mock</strong> implementing the same interface.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/138137#138137 4 Answer by Bruno De Fraine for Using "final" modifier whenever applicable in java Bruno De Fraine 2008-09-26T07:25:39Z 2008-09-26T07:25:39Z <p>The <code>final</code> modifier, especially for variables, is a means to have the compiler enforce a convention that is generally sensible: make sure a (local or instance) variable is assigned exactly once (no more no less). By making sure a variable is definitely assigned before it is used, you can avoid common cases of a <code>NullPointerException</code>:</p> <pre><code>final FileInputStream in; if(test) in = new FileInputStream("foo.txt"); else System.out.println("test failed"); in.read(); // Compiler error because variable 'in' might be unassigned </code></pre> <p>By preventing a variable from being assigned more than once, you discourage overbroad scoping. Instead of this:</p> <pre><code> String msg = null; for(int i = 0; i &lt; 10; i++) { msg = "We are at position " + i; System.out.println(msg); } msg = null; </code></pre> <p>You are encouraged to use this:</p> <pre><code> for(int i = 0; i &lt; 10; i++) { final String msg = "We are at position " + i; System.out.println(msg); } </code></pre> <p>Some links:</p> <ul> <li><a href="http://oreilly.com/catalog/hardcorejv/chapter/ch02.pdf" rel="nofollow">The final story</a> (free chapter of the book "Hardcore Java")</li> <li><a href="http://enfranchisedmind.com/blog/2007/12/16/some-final-patterns/" rel="nofollow">Some final patterns</a></li> <li><a href="http://java.sun.com/docs/books/jls/third_edition/html/defAssign.html" rel="nofollow">Definite assignment</a></li> </ul> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/138440#138440 2 Answer by Christian Vest Hansen for Using "final" modifier whenever applicable in java Christian Vest Hansen 2008-09-26T09:20:05Z 2008-09-26T09:20:05Z <p>I use <code>final</code> all the time for object attributes.</p> <p>The <code>final</code> keyword has visibility semantics when used on object attributes. Basically, setting the value of a final object attribute happens-before the constructor returns. This means that as long as you don't let the <code>this</code> reference escape the constructor and you use <code>final</code> for <em>all</em> you attributes, your object is (under Java 5 semantics) guarenteed to be properly constructed, and since it is also immutable it can be safely published to other threads.</p> <p>Immutable objects is not just about thread-safety. They also make it a lot easier to reason about the state transitions in your program, because the space of what <em>can</em> change is deliberately and, if used consistently, thoroughly limited to only the things that <em>should</em> change.</p> <p>I sometimes also make methods final, but not as often. I seldomly make classes final. I generally do this because I have little need to. I generally don't use inheritance much. I prefer to use interfaces and object composition instead - this also lends itself to a design that I find is often easier to test. When you code to interfaces instead of concrete classes, then you don't <em>need</em> to use inheritance when you test, as it is, with frameworks such as jMock, much easier to create mock-objects with interfaces than it is with concrete classes.</p> <p>I guess I should make the majority of my classes final, but I just haven't gotten into the habbit yet.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/138733#138733 2 Answer by Tom Hawtin - tackline for Using "final" modifier whenever applicable in java Tom Hawtin - tackline 2008-09-26T10:59:34Z 2008-09-26T10:59:34Z <p>I have to read a lot of code for my job. Missing final on instance variables is one of the top things to annoy me and makes understanding the code unnecessarily difficult. For my money, final on local variables causes more clutter than clarity. The language should have been designed to make that the default, but we have to live with the mistake. Sometimes it is useful particularly with loops and definite assignment with an if-else tree, but mostly it tends to indicate your method is too complicated.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/138990#138990 12 Answer by Alex Miller for Using "final" modifier whenever applicable in java Alex Miller 2008-09-26T11:59:35Z 2008-09-28T01:30:38Z <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/137868/using-final-modifier-whenever-applicable-in-java/139931#139931 0 Answer by Robin for Using "final" modifier whenever applicable in java Robin 2008-09-26T14:38:34Z 2008-09-26T14:38:34Z <p>I never use them on local variables, there is little point for the added verbosity. Even if you don't think the variable should be reassigned, that will make little difference to the next person altering that code that thinks otherwise, and since the code is being changed, any original purpose for making it final may no longer be valid. If it is just for clarity, I believe it fails due to the negative effects of the verbosity.</p> <p>Pretty much the same applies to member variables as well, as they provide little benefit, except for the case of constants.</p> <p>It also has no bearing on immutability, as the best indicator of something being immutable is that it is documented as such and/or has no methods that can alter the object (this, along with making the class final is the only way to guarantee that it is immutable).</p> <p>But hey, that's just my opinion :-)</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/140134#140134 0 Answer by zvikico for Using "final" modifier whenever applicable in java zvikico 2008-09-26T15:13:18Z 2008-09-26T15:13:18Z <p>I set up Eclipse to add final on all fields and attributes which are not modified. This works great using the Eclipse "save actions" which adds these final modifiers (among other things) when saving the file.</p> <p>Highly recommended. </p> <p>Check out <a href="http://blog.zvikico.com/problog/2007/08/eclipse-europa-.html" rel="nofollow">my blog post</a> of Eclipse Save Actions.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/140152#140152 0 Answer by DJClayworth for Using "final" modifier whenever applicable in java DJClayworth 2008-09-26T15:16:14Z 2008-09-26T15:16:14Z <p><strong>final</strong> should obviously be used on constants, and to enforce immutability, but there is another important use on methods.</p> <p><em>Effective Java</em> has a whole item on this (Item 15) pointing out the pitfalls of unintended inheritance. Effectively if you didn't design and document your class for inheritance, inheriting from it can give unexpected problems (the item gives a good example). The recommendation therefore is that you use <strong>final</strong> on any class and/or method that wasn't intended to be inherited from. </p> <p>That may seem draconian, but it makes sense. If you are writing a class library for use by others then you don't want them inheriting from things that weren't designed for it - you will be locking yourself into a particular implementation of the class for back compatibility. If you are coding in a team there is nothing to stop another member of the team from removing the <strong>final</strong> if they really have to. But the keyword makes them think about what they are doing, and warns them that the class they are inheriting from wasn't designed for it, so they should be extra careful.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/142122#142122 2 Answer by David Leppik for Using "final" modifier whenever applicable in java David Leppik 2008-09-26T21:34:07Z 2008-09-26T21:34:07Z <p>Final should always be used for constants. It's even useful for short-lived variables (within a single method) when the rules for defining the variable are complicated.</p> <p>For example:</p> <pre><code>final int foo; if (a) foo = 1; else if (b) foo = 2; else if (c) foo = 3; if (d) // Compile error: forgot the 'else' foo = 4; else foo = -1; </code></pre> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/142406#142406 0 Answer by Eugene for Using "final" modifier whenever applicable in java Eugene 2008-09-26T22:48:33Z 2008-09-26T22:48:33Z <p>Marking the class final can also make some method bindings happen at compile time instead of runtime. Consider "v2.foo()" below - the compiler knows that B cannot have a subclass, so foo() cannot be overridden so the implementation to call is known at compile time. If class B is NOT marked final, then it's possible that the actual type of v2 is some class that extends B and overrides foo().</p> <pre><code>class A { void foo() { //do something } } final class B extends A { void foo() { } } class Test { public void t(A v1, B v2) { v1.foo(); v2.foo(); } } </code></pre> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/144599#144599 0 Answer by Uri for Using "final" modifier whenever applicable in java Uri 2008-09-27T22:09:44Z 2008-09-27T22:09:44Z <p>Another caveat is that many people confuse final to mean that the contents of the instance variable cannot change, rather than that the reference cannot change. </p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/144988#144988 2 Answer by Ryan Ransford for Using "final" modifier whenever applicable in java Ryan Ransford 2008-09-28T02:05:25Z 2008-09-28T02:05:25Z <p>I'm pretty dogmatic about declaring every possible variable <code>final</code>. This includes method parameters, local variables, and rarely, value object fields. I've got three main reasons for declaring final variables everywhere:</p> <ol> <li>Declaring Intention: By declaring a final variable, I am stating that this variable is meant to be written to only once. It's a subtle hint to other developers, and a big hint to the compiler.</li> <li>Enforcing Single-use Variables: I believe in the idea that each variable should have only one purpose in life. By giving each variable only one purpose, you reduce the time it takes to grok the purpose of that particular variable while debugging.</li> <li>Allows for Optimization: I know that the compiler used to have performance enhancement tricks which relied specifically on the immutability of a variable reference. I like to think some of these old performance tricks (or new ones) will be used by the compiler.</li> </ol> <p>However, I do think that final classes and methods are not nearly as useful as final variable references. The <code>final</code> keyword, when used with these declarations simply provide roadblocks to automated testing and the use of your code in ways that you could have never anticipated.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/169323#169323 0 Answer by Diastrophism for Using "final" modifier whenever applicable in java Diastrophism 2008-10-03T23:33:23Z 2008-10-03T23:33:23Z <p>Even for local variables, knowing that it is declared final means that I don't need to worry about the reference being changed later on. This means that when debugging and I see that variable later on, I am confident that it is referring to the same object. That is one less thing I need to worry about when looking for a bug. A bonus is that if 99% of variables are declared final, then the few variables which really are variable stand out better. Also, the final lets the compiler find some more possible stupid mistakes that might otherwise go unnoticed.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/172063#172063 0 Answer by John Nilsson for Using "final" modifier whenever applicable in java John Nilsson 2008-10-05T14:29:01Z 2008-10-05T14:29:01Z <p>For arguments I'm think they're not needed. Mostley they just hurt readabillity. Rreassigning an argument variable is so insanely stupid that I should be pretty confident that they can be treated as constants anyway.</p> <p>The fact that Eclipse colors final red makes it easier to spot variable declarations in the code which I think improves readbillity most of the time.</p> <p>I try to enforce the rule that any and all variables should be final it there isn't an extremley valid reason not to. It's so much easier to answer the "what is this variable?" question if you just have to find the initilization and be confident that that is it.</p> <p>I actually get rather nervous around non-final variables now a days. It's like the differnce between having a knife hanging in a thread abouve your head, or just having it you kitchen drawer...</p> <p>A final variable is just a nice way to lable values.</p> <p>A non-final variable is bound to part of some bug-prone algorithm.</p> <p>One nice feature is that when the option to use a variable in out of the question for an algorithm most of the time the sollution is to write a method instead, which usually improves the code significantly.</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/977676#977676 0 Answer by Ravi Wallau for Using "final" modifier whenever applicable in java Ravi Wallau 2009-06-10T19:29:58Z 2009-06-10T19:29:58Z <p>I've been coding for a while now and using final whenever I can. After doing this for a while (for variables, method parameters and class attributes), I can say that 90% (or more) of my variables are actually final. I think the benefit of NOT having variables modified when you don't want to (I saw that before and it's a pain sometimes) pays for the extra typing and the extra "final" keywords in your code.</p> <p>That being said, if I would design a language, I would make every variable final unless modified by some other keyword.</p> <p>I don't use final a lot for classes and methods, thought. This is a more or less complicated design choice, unless your class is a utility class (in which case you should have only one private constructor).</p> <p>I also use Collections.unmodifiable... to create unmodifiable lists when I need to.</p>