Why should I use the keyword "final" on a method parameter in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:14:09Zhttp://stackoverflow.com/feeds/question/500508http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java3Why should I use the keyword "final" on a method parameter in Java? Yotam Gilboa2009-02-01T09:49:42Z2009-02-02T05:42:40Z
<p>I can't understand where the final keyword is REALLY handy when it is used on method parameters. </p>
<p>If we exclude the usage of anonymous classes, readability and intent declaration then it seems almost worthless to me. </p>
<p>Enforcing that some data remains constant is not as strong as it seems. </p>
<p>A) If the parameter is a primitive then it will have no effect since the parameter is passed to the method as a value and changing it will have no effect outside the scope. </p>
<p>B) If we are passing a parameter by reference, then the reference itself is a local variable and if the reference is changed from within the method, that would not have any effect from outside of the method scope. </p>
<p>Consider the simple test example below.
This test passes although the method changed the value of the reference given to it, it has no effect.</p>
<pre><code>public void testNullify(){
Collection<Integer> c = new ArrayList<Integer>();
nullify(c);
assertNotNull(c);
final Collection<Integer> c1 = c;
assertTrue(c1.equals(c));
change(c);
assertTrue(c1.equals(c));
}
private void change(Collection<Integer> c) {
c = new ArrayList<Integer>();
}
public void nullify(Collection<?> t){
t = null;
}
</code></pre>
http://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java/500517#50051713Answer by Jon Skeet for Why should I use the keyword "final" on a method parameter in Java? Jon Skeet2009-02-01T09:54:45Z2009-02-01T13:45:35Z<p>Yes, excluding anonymous classes, readability and intent declaration it's almost worthless. Are those three things worthless though?</p>
<p>Personally I tend not to use <code>final</code> for local variables and parameters unless I'm using the variable in an anonymous inner class, but I can certainly see the point of those who want to make it clear that the parameter value itself won't change (even if the object it refers to changes its contents). For those who find that adds to readability, I think it's an entirely reasonable thing to do.</p>
<p>Your point would be more important if anyone were actually claiming that it <em>did</em> keep data constant in a way that it doesn't - but I can't remember seeing any such claims. Are you suggesting there's a significant body of developers suggesting that <code>final</code> has more effect than it really does?</p>
<p>EDIT: I should really have summed all of this up with a Monty Python reference; the question seems somewhat similar to asking "What have the Romans ever done for us?"</p>
http://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java/500529#5005291Answer by Yotam Gilboa for Why should I use the keyword "final" on a method parameter in Java? Yotam Gilboa2009-02-01T10:04:38Z2009-02-01T10:04:38Z<p>I am suggesting that there might be a significant body of developers who misunderstand "final" to have more effect than it really has. </p>
<p>I think that for some developers, "final" as a method parameter, unlike as a local field modifier is a misleading concept. </p>
http://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java/500537#5005374Answer by Germán for Why should I use the keyword "final" on a method parameter in Java? Germán2009-02-01T10:13:55Z2009-02-01T10:13:55Z<p>Using final in a method parameter has nothing to do with what happens to the argument on the caller side. It is only meant to mark it as not changing inside that method. As I try to adopt a more functional programming style, I kind of see the value in that.</p>
http://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java/500595#5005950Answer by starblue for Why should I use the keyword "final" on a method parameter in Java? starblue2009-02-01T11:01:50Z2009-02-01T11:01:50Z<p>Personally I don't use final on method parameters, because it adds too much clutter to parameter lists.
I prefer to enforce that method parameters are not changed through something like Checkstyle.</p>
<p>For local variables I use final whenever possible, I even let Eclipse do that automatically in my setup for personal projects.</p>
<p>I would certainly like something stronger like C/C++ const.</p>
http://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java/500627#5006276Answer by Michael Borgwardt for Why should I use the keyword "final" on a method parameter in Java? Michael Borgwardt2009-02-01T11:23:51Z2009-02-01T11:23:51Z<p>Let me explain a bit about the one case where you <em>have</em> to use final, which Jon already mentioned:</p>
<p>If you create an anonymous inner class in your method and use a local variable (such as a method parameter) inside that class, then the compiler forces you to make the parameter final:</p>
<pre><code>public Iterator<Integer> createIntegerIterator(final int from, final int to)
{
return new Iterator<Integer>(){
int index = from;
public Integer next()
{
return index++;
}
public boolean hasNext()
{
return index <= to;
}
// remove method omitted
};
}
</code></pre>
<p>Here the <code>from</code> and <code>to</code> parameters need to be final so they can be used inside the anonymous class. </p>
<p>The reason for that requirement is this: Local variables live on the stack, therefore they exist only while the method is executed. However, the anonymous class instance is returned from the method, so it may live for much longer. You can't preserve the stack, because it is needed for subsequent method calls. </p>
<p>So what Java does instead is to put <em>copies</em> of those local variables as hidden instance variables into the anonymous class (you can see them if you examine the byte code). But if they were not final, one might expect the anonymous class and the method seeing changes the other one makes to the variable. In order to maintain the illusion that there is only one variable rather than two copies, it has to be final.</p>
http://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java/500984#5009840Answer by Fortyrunner for Why should I use the keyword "final" on a method parameter in Java? Fortyrunner2009-02-01T15:20:09Z2009-02-01T15:20:09Z<p>I use final all the time on parameters. </p>
<p>Does it add that much? Not really.</p>
<p>Would I turn it off? No.</p>
<p>The reason: I found 3 bugs where people had written sloppy code and failed to set a member variable in accessors. All bugs proved difficult to find.</p>
<p>I'd like to see this made the default in a future version of Java. The pass by value/reference thing trips up an awful lot of junior programmers. </p>
<p>One more thing.. my methods tend to have a low number of parameters so the extra test on a method declaration isn't an issue.</p>
http://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java/502252#5022522Answer by jsha for Why should I use the keyword "final" on a method parameter in Java? jsha2009-02-02T05:18:28Z2009-02-02T05:18:28Z<p>Sometimes its nice to be explicit(for readability) that the variable doesn't change. Here's a simple example where using final can save some possible headaches</p>
<pre><code>public void setTest(String test) {
test = test;
}
</code></pre>
<p>if you forget the 'this' keyword on a setter the variable you want to set doesn't get set. However if you used the final keyword on the parameter then the bug would be caught at compile time.</p>
http://stackoverflow.com/questions/500508/why-should-i-use-the-keyword-final-on-a-method-parameter-in-java/502289#5022890Answer by Michael Rutherfurd for Why should I use the keyword "final" on a method parameter in Java? Michael Rutherfurd2009-02-02T05:42:40Z2009-02-02T05:42:40Z<p>One additional reason to add final to parameter declarations is that it helps to identify variables that need to be renamed as part of a "Extract Method" refactoring. I have found that adding final to each parameter prior to starting a large method refactoring quickly tells me if there are any issues I need to address before continuing.</p>
<p>However, I generally remove them as superfluous at the end of the refactoring.</p>