Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, we can see lots of places where final keyword can be used but we are not used to it.

For eg.

String str = "abc";
System.out.println(str);

In above case str can be final but we usually forget.

When method is not going to be overridden in that case we can use final keyword. But usually we do not. Similarly in case of class which is not going to be inherited.

Does use of final keyword really improve the performance? If so, then how? Please explain. If really this matters in performance then it should be made as habit.

share|improve this question
I don't think so pal, method dispatching(call site caching and ...) is an issue in dynamic languages not in static type languages – Jani Nov 25 '10 at 17:11
3  
+1 I am also looking for a well researched answer to this question – Vincent Robert Nov 25 '10 at 17:11
If I run my PMD tool (plugin to eclipse) used for reviewing purpose, it suggest to make changes for variable in case as shown above. But I did not understand its concept. Really the performance hits so much?? – Abhishek Jain Nov 25 '10 at 17:17
I thought this was a typical exam question. I remember that final does have influence on performance, IIRC final classes can be optimized by the JRE in some way because they cannot be subclassed. – Kawu Nov 25 '10 at 19:57

7 Answers

up vote 50 down vote accepted

Usually not. For virtual methods, HotSpot keeps track of whether the method has actually been overridden, and is able to perform optimizations such as inlining on the assumption that a method hasn't been overridden - until it loads a class which overrides the method, at which point it can undo (or partially undo) those optimizations.

(Of course, this is assuming you're using HotSpot - but it's by far the most common JVM, so...)

To my mind you should use final based on clear design and readability rather than for performance reasons. If you want to change anything for performance reasons, you should perform appropriate measurements before bending the clearest code out of shape - that way you can decide whether any extra performance achieved is worth the poorer readability/design. (In my experience it's almost never worth it; YMMV.)

EDIT: As final fields have been mentioned, it's worth bringing up that they are often a good idea anyway, in terms of clear design. They also change the guaranteed behaviour in terms of cross-thread visibility: after a constructor has completed, any final fields are guaranteed to be visible in other threads immediately. This is probably the most common use of final in my experience, although as a supporter of Josh Bloch's "design for inheritance or prohibit it" rule of thumb, I should probably use final more often for classes...

share|improve this answer
I like your answer but I would like to know more in details about it. – Abhishek Jain Nov 25 '10 at 17:14
@Abhishek: About what in particular? The most important point is the last one - that you almost certainly shouldn't be worrying about this. – Jon Skeet Nov 25 '10 at 17:23
As I have written above in one comment, PMD tool suggest me that particular kind of change but I did not understand the context of the above changes. Yes I am agree with you even I did not find any difference. There are lots of articles related to performance suggest this change. So I would like to know what difference JVM actually make with final keyword and else ...if possible. +1 for your answer. – Abhishek Jain Nov 25 '10 at 17:31
4  
@Abishek: final is generally recommended because it makes code easier to understand, and helps find bugs (because it makes the programmers intention explicit). PMD probably recommends to use final because of these style issues, not for performance reasons. – sleske Nov 25 '10 at 17:36
1  
@Abhishek: A lot of it is likely to be JVM-specific, and may rely on very subtle aspects of context. For example, I believe the HotSpot server JVM will still allow inlining of virtual methods when overridden in one class, with a quick type check where appropriate. But the details are hard to pin down and may well change between released. – Jon Skeet Nov 25 '10 at 17:37

According to IBM - it doesnt for classes or methods.

http://www.ibm.com/developerworks/java/library/j-jtp04223.html

share|improve this answer
1  
+1 for actually providing a reference :-) – sleske Nov 25 '10 at 17:22
+1 Thanks for the link – Abhishek Jain Nov 26 '10 at 13:38

I believe for final fields (constants) there are significant performance gains. See also this article on final usage : http://renaud.waldura.com/doc/java/final-keyword.shtml

share|improve this answer
+1 Interesting link. BTW, final for class fields should only make a difference for non-private fields. For private fields, the compiler can check for multiple assignments even if final is not given. – sleske Nov 25 '10 at 17:22
+1 I like this article. – Abhishek Jain Nov 26 '10 at 13:39
2  
@sleske, good point, but explicit immutable state design is a good reason to use final fields anyway – Timo Westkämper Nov 26 '10 at 16:58

You are really asking about two (at least) different cases:

  1. final for local variables
  2. final for methods/classes

Jon Skeet has already answered 2). About 1):

I don't think it makes a difference; for local variables, the compiler can deduce whether the variable is final or not (simply by checking whether it is assigned more than once). So if the compiler wanted to optimize variables that are only assigned once, it can do so no matter whether the variable is actually declared final or not.

final might make a difference for protected/public class fields; there it's very difficult for the compiler to find out if the field is being set more than once, as it could happen from a different class (which may not even have been loaded). But even then the JVM could use the technique Jon describes (optimize optimistically, revert if a class is loaded which does change the field).

In summary, I don't see any reason why it should help performance. So this kind of micro-optimization is unlikely to help. You could try benchmarking it to make sure, but I doubt it will make a difference.

Edit:

Actually, according to Timo Westkämper's answer, final can improve performance for class fields in some cases. I stand corrected.

share|improve this answer

I'm not an expert but I suppose you should add final keyword to the class or method if it won't be overwritten and leave variables alone. If there will be any way to optimize such things the compiler will do that for you.

share|improve this answer

Note: Not a java expert

If I remember my java correctly, there would be very little way to improve performance using the final keyword. I've always known it to exist for "good code" - design and readability.

share|improve this answer

final keyword can be used in five ways in Java.

  1. A class is final
  2. A variable is final
  3. A local variable is final
  4. A method is final
  5. A object is final.

A class is final: a class is final means we cannot be extended or inheritance means inheritance is not possible.

Similarly - A object is final: some time we does not modified the internal state of object so in such case we can specify the object is final object.object final means not variable also final.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.