vote up 12 vote down star
3

In Java, you can qualify local variables and method parameters with the final keyword.

public static void foo(final int x) {
  final String qwerty = "bar"; 
}

Doing so results in not being able to reassign x and qwerty in the body of the method.

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?

flag

63% accept rate
I would suggest that you make subjective questions community-wiki so they're less likely to get closed as reputation-whoring. – paxdiablo Nov 25 '08 at 4:27
1  
I'm not sure this is really a subjective question, rather than a best-practices question. – Uri Nov 25 '08 at 4:32
It's both. It's a subjective best practice.. – SCdF Nov 25 '08 at 4:33
The dead giveaway is the phrase "what is your opinion of ...". – paxdiablo Nov 25 '08 at 4:42
See stackoverflow.com/questions/266806/… and stackoverflow.com/questions/137868/… and stackoverflow.com/questions/154314/… – Robin Nov 25 '08 at 14:36
show 1 more comment

11 Answers

vote up 14 vote down check

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.

link|flag
+1: Just one addition - final also convey's the author's intent, both in parameters and local variables. – Ken Gentle Nov 25 '08 at 12:58
I'm reading Hardcore Java right now. I thought I knew java........... – WolfmanDragon Dec 9 '08 at 21:25
vote up 5 vote down

My personal opinion is that it is a waste of time. I believe that the visual clutter and added verbosity is not worth it.

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.

But, of course, it's all personal preference ;-)

link|flag
vote up 2 vote down

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.

In the case of magic numbers, I would put them as a constant private field anyway rather than in the code.

I only use final in situations where it is necessary (e.g., passing values to anonymous classes).

link|flag
vote up 2 vote down

Yes do it.

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.

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.

link|flag
finalized wont preserve a parameter or variable from become modified, it is not like const in C++. Pass list to a final parameter an you can clear it anyway. – Arne Burmeister Jan 3 '09 at 20:29
It's not about safety, it's about readability. Obviously making a parameter final has no effect on which states are possible at the end of the method. – Motlin Jan 5 at 16:24
@Motlin: it does for primitives and immutable objects, which covers a lot of parameters in my experience. – Andrew Swan Feb 12 at 22:07
@Andrew I'm talking about state on the heap, not on the stack which is about to get lost anyway. There are no side effects that are possible with non-final parameters that you can't do with final parameters. – Motlin Feb 12 at 23:11
vote up 1 vote down

Making a parameter final guarantees 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.

Hence, not using final makes your code less readable, and maintainable, all by itself :)

Final local variables depend on intent, and is less important in my point of view. Depends on what goes on.

link|flag
vote up 0 vote down

Because of the (occasionally) confusing nature of Java's "pass by reference" behavior I definitely agree with finalizing parameter var's.

Finalizing local var's seems somewhat overkill IMO.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

We do it here for the local variables if we think they will not be reassigned or should not be reassigned.

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.

link|flag
vote up 0 vote down

"final" parameter is just silly , or kind of showing off, I think .

link|flag
1  
Immutable parameters allow you to see at any part of the code of a given method referring to a parameter, and be certain that the value used, is the value passed. Maintainers tend to like that. – Thorbjørn Ravn Andersen Aug 30 at 8:21
vote up -1 vote down

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.

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.

Edit

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.

link|flag
The JRE or compiler can do more optimization if it knows the object is finalized. – paxdiablo Nov 25 '08 at 4:25
Sure, but that wasn't the question. In terms of making your code immutable, it doesn't really work. However, you are quite correct in that it can be slightly faster than not using it, and should be considered when performance is an issue. – Elie Nov 25 '08 at 4:27
As I commented on Pax's answer, I'm fairly sure there are no perf improvements by making local variables final, since the JVM can guess that for you. – SCdF Nov 25 '08 at 4:31
No, just compiler improvements, but who cares about those. Now I'm too lazy to correct myself yet again. Oh well.... – Elie Nov 25 '08 at 4:34
Finalizing the parameter is not an optimization. The final flag is stripped out at compile time. It is only used by the compiler, not at runtime. – Robin Nov 25 '08 at 14:32
vote up -1 vote down

final has three good reasons:

  • instance variables set by constructor only become immutable
  • methods not to be overridden become final, use this with real reasons, not by default
  • local variables or parameters to be used in anonimous classes inside a method need to be final

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.

link|flag

Your Answer

Get an OpenID
or

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