I’ve been following the evolution of the Java 8 Lambda expressions project for a while now, and I’m really thrilled by its current state of progress. The latest “easy-to-understand” presentation I’ve found is this one:
http://blogs.oracle.com/briangoetz/resource/devoxx-lang-lib-vm-co-evol.pdf
Now, as an API designer, I’m particularly interested in the concept of virtual extension methods and I was wondering whether it was also considered to introduce “final” extension methods as opposed to “default” ones. For example:
interface A {
void a();
void b() default { System.out.println("b"); };
void c() final { System.out.println("c"); };
}
When implementing the above interface A, one…
- MUST also implement a()
- MAY implement / override b()
- CANNOT override c()
Advantages:
- API designers can create convenience methods more easily without risking client code “illegally” overriding default implementations. That’s one of the main purposes of “final”.
- Lambda expressions wouldn’t need to be limited to pure “functional interfaces” (single-method interfaces), as a functional interface would still be “functional” if it also had any number of final extension methods. For example, the above interface A would become a functional interface, if b() was removed or if b() was made final as well.
- Extension methods would have more features in common with regular methods, which can be final as well. I guess for the reflection API and for the JVM, that’s a plus.
- The JVM is modified anyway to support extension methods. Java 8′s momentum could be used for this feature as well, i.e. now is the right time to think about this
Disadvantages:
- A class could inherit multiple colliding final method implementations in the case of “diamond interface inheritance“. This could lead to new compilation errors in existing code. I guess this lack of backwards compatibility is the biggest drawback.
As with multiple inheritance itself, careful API designers could
further improve their API’s when using final extension methods,
whereas less careful API designers might break client code. But this
is the case with previous usage of “final” as well, so I think final
extension methods would be a very nice addition to Java 8.
See the full mail and follow-up on the lambda-dev mailing list here:
http://mail.openjdk.java.net/pipermail/lambda-dev/2011-December/004426.html



December 21st, 2011 at 07:31
At some point the interfaces behavior seem to get closer to traits in langugaes like scala. Interesting move
December 21st, 2011 at 08:10
Yes that’s what many people noticed, even if the concept of extension methods was actually borrowed from C#. In any case, we’re going to learn Java afresh…
January 29th, 2012 at 14:52
[...] type of “extension”. The concept is called “Extension Methods“. Its Java implementation should arrive in Java [...]
February 1st, 2012 at 22:58
[...] “Extension Methods” and the C# implementation is the closest to this concept. The Java implementation that should arrive in Java 8 is not quite helpful for this type of [...]
April 19th, 2012 at 09:40
[...] One of them is the concept of “Streams” as opposed to “Collections”. Using the new Java 8 extension methods, the Iterable interface can be extended compatibly with a lot of “lazy” and [...]
May 10th, 2013 at 09:44
[…] from the “big stuff”, related to extension methods, lambda, and the streams API, Java 8 also has a couple of minor, very subtle changes. One of them […]