Submitted by heartin on Mon, 06/13/2016 - 21:35
Before Java 8, you could only use final variables from a surrounding class in an anonymous inner class. In Java 8, within anonymous class (or lambda expressions) you can use effectively final variables: not declared as final but only assigned once.
Important points about accessing variables from within an anonymous inner class (or lambda expression)
Submitted by heartin on Mon, 06/13/2016 - 21:25
Java 8 allows you to write lambda expressions in few varying syntaxes. Let us quickly see those here.
With no arguments
Runnable r = () -> System.out.println(“H”);
Only one argument: with or without parenthesis
ActionListener al1 = (event) -> System.out.println(“Button clicked”);
ActionListener al2 = event -> System.out.println(“Button clicked”);
Submitted by heartin on Mon, 06/13/2016 - 21:19
Lambda expressions implement an interface with only one single abstract methodl. Such interfaces are called as functional interfaces. Since the interface has only one single method (function), passing across that interface implementation gives the impression of passing across that function. Already existing interfaces in Java such as Runnable, Comparator, ActionListener are already functional interfaces, as they have only one abstract method. We will see how we can use lambda expressions with those existing interfaces.
Submitted by heartin on Mon, 06/13/2016 - 21:05
Before Java 8, interfaces could only have abstract methods and constants. Java 8 allows you to have default as well as static methods inside an interface. This was mainly done for interface unlocking: Now you can add methods to an interface without needing the implementing classes to change.
Default methods
You can add an instance method to an interface through the keyword default.
They are also public similar to the abstract methods.
Default methods are inherited by subclasses and can be overriden.
Submitted by heartin on Mon, 06/13/2016 - 20:45
Method references or constructor references can be used to refer to an existing method or constructor by name. Classes containing these methods can be regular classes without the need to implement or extend anything. However, the target type needs to be a functional interface, as the signature of the method is infered from the functional interface's abstract method.
Pages