DEV Community

Cover image for What was added to Java 8? Lambda expressions
Wojtek Krzywiec
Wojtek Krzywiec

Posted on • Originally published at wkrzywiec.Medium

What was added to Java 8? Lambda expressions

Cover image by Iswanto Arif on Unsplash

With this article I start a short series that will explain what features were added to Java 8 update. Today I’ll focus on the major buzz of this release — lambda expression (a.k.a. lambdas).

These series will be divided into three parts (links will be updated once each blog post will be published):

  • Part 1. Lambda expression (this one)

  • Part 2. Streams (soon)

  • Part 3. Optional (soon)

Lambda expression

When you start to learn Java and you have already passed command line examples you probably wants to create a desktop application. And for this you probably use JavaFX library (at least it was my case).

In most of JavaFX applications we need to handle events that can be triggered by the users. For example, when they press a button it’ll create an Event object that need to be handled.

Therefore we need to assign an action which will be triggered once user click the button. For this task we usually declare anonymous inner class, which has only one method that performs necessary actions.

button.setOnAction(new EventHandler<ActionEvent>() {
       @Override
       public void handle(ActionEvent e) {
           System.out.println("Button clicked");
       }
});
Enter fullscreen mode Exit fullscreen mode

Even if above code is pretty straightforward it requires lots of writing and when code starts to grow it’s also becomes hard to ready. Luckily, thanks to lambda expression we can write it in a more compact way:

button.setOnAction( (e) -> System.out.println("Button clicked") );
Enter fullscreen mode Exit fullscreen mode

Whoa! That’s short, but what’s going on there?

Lambda expression syntax is made of three parts. First one are brackets, (e) , that contains (or not) parameters of the abstract method of an anonymous inner class. It’s really important to remember that lamdas can be used only when a single abstract method.

In our case ActionEvent object is represented by e reference. If the method doesn’t have any parameter we can use simple () instead, like for Runnable interface.

Runnable r1 = () -> System.out.println("I'm in outside main thread!");
Enter fullscreen mode Exit fullscreen mode

Finally method can have more than one arguments, like Comperator interface method compare.

Comparator<User> userComperator = 
(User first, User second) ->  first.email().compareTo(second.email());
Enter fullscreen mode Exit fullscreen mode

In above example we could also don’t include argument types (User), but for clarity reasons it good to be added.

Next, after the arguments there is a newly introduce right arrow -> operator.

And finally there is a body of the implemented method. Usually it’s a one line of code, but if we require more we can surround it with {} brackets.

button.setOnAction( (e) ->  {
  System.out.println("Button clicked");
  label.setText("Clicked");
});
Enter fullscreen mode Exit fullscreen mode

If a method should return a value we can use return statement as it’s in regular methods

Method reference (::)

Another topic that is tightly related and was introduced together with lambda expression is referencing the method. In short, with new operator :: we can assign method to a reference, just like the object or primitive type. This approach allow us to extract the method from the object and pass it in another place without executing them.

Object objectInstance = new Object();
IntSupplier equalsMethodOnObject = objectInstance::hashCode;
System.out.println(equalsMethodOnObject.getAsInt());
Enter fullscreen mode Exit fullscreen mode

Above we assign a hashCode method to a reference IntSupplier. Then it can be passed wherever we want in the code.

With method reference we can also assign static methods (without creating instance of the class) or constructor.

References

Top comments (0)