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, it is perfectly legal to define final arguments in interface methods and do not obey that in the implementing class, e.g.:

public interface Foo {
    public void foo(int bar, final int baz);
}

public class FooImpl implements Foo {

    @Override
    public void foo(final int bar, int baz) {
        ...
    }
}

In the above example, bar and baz has the opposite final definitions in the class VS the interface.

In the same fashion, no final restrictions are enforced when one class method extends another, either abstract or not.

While final has some practical value inside the class method body, is there any point specifying final for interface method parameters?

share|improve this question
4  
+1 Excellent question. – skaffman Mar 21 '11 at 15:57
final doesn't do anything with native types anyway, since they're copied. – Paul Tomblin Mar 21 '11 at 16:03
5  
Just as a point of discussion: I just tried it and if two interface definitions vary only in the final attribute of an argument, then the resulting .class files are byte-for-byte identically (and of course javap -v produces the same output). The same is true for two classes that only differ in final on an attribute, by the way! – Joachim Sauer Mar 21 '11 at 16:04
1  
@Paul: it does exactly the same thing as with reference types: it prevents the arguments itself to be modified (if used in the implementation). – Joachim Sauer Mar 21 '11 at 16:04
It has as much relevance as the public in the method signature. – Robin Mar 21 '11 at 16:20
show 3 more comments

4 Answers

up vote 30 down vote accepted

It doesn't seem like it. According to the Java Language Specification 4.12.4:

Declaring a variable final can serve as useful documentation that its value will not change and can help avoid programming errors.

However, a final modifier on a method parameter is not mentioned in the rules for matching signatures of overridden methods, and it has no effect on the caller, only within the body of an implementation.

share|improve this answer
Does method parameter also qualify as a variable? It obviously is in practice, but is it in specification context? – mindas Mar 21 '11 at 16:14
5  
It can't be used to match signatures since it is does not appear in the actual .class file. It is for the compiler only. – Robin Mar 21 '11 at 16:16
@mindas - the JLS says that there are seven kinds of variables. Method paramaters are fourth on the list. – Ted Hopp Mar 21 '11 at 16:24
@Robin - good point. – Ted Hopp Mar 21 '11 at 16:25

Final annotations of method parameters are always only relevant to the method implementation never to the caller. Therefore, there is no real reason to use them in interface method signatures. Unless you want to follow the same consistent coding standard, which requires final method parameters, in all method signatures. Then it is nice to be able to do so.

share|improve this answer

Some IDEs will copy the signature of the abstract/interface method when inserting an implementing method in a sub class.

I don't believe it makes any difference to the compiler.

share|improve this answer
2  
Valid point, although I don't think there were many IDEs when this feature was implemented (or left accidentally) :-) – mindas Mar 21 '11 at 16:01
2  
I think is in the category of static transient fields. ;) – Peter Lawrey Mar 21 '11 at 16:07
1  
And public constructors on an abstract class. – Peter Lawrey Mar 21 '11 at 16:08

I believe it may be a superfluous detail, as whether it's final or not is an implementation detail.

(Sort of like declaring methods/members in an interface as public.)

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.