Introduction to the usage of predicate in java8 (code example)
This article brings you an introduction to the usage of predicate in java8 (code examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Pass code
Let’s first look at an example. Suppose you have an Apple class, which has a getColor method, and a variable inventory that holds a list of Apples. . You might want to select all green apples and return a list. Usually we use the word filter to express this concept. Before Java 8, you might write such a method filterGreenApples:
public static List<Apple> filterGreenApples(List<Apple> inventory){ List<Apple> result = new ArrayList<>(); for (Apple apple: inventory){ if ("green".equals(apple.getColor())) { result.add(apple); } } return result; }
But then, someone might want to select heavy apples, such as more than 150 grams, so you wrote the following with a heavy heart
method, even using copy and paste:
public static List<Apple> filterHeavyApples(List<Apple> inventory){ List<Apple> result = new ArrayList<>(); for (Apple apple: inventory){ if (apple.getWeight() > 150) { result.add(apple); } } return result; }
We all know the dangers of copy and paste in software engineering - updating and correcting one, but forgetting about the other. Hey, there is only one line difference between the two methods: the highlighted line of condition in if. If the difference between the two highlighted methods is only the weight range of the accepted
, then you only need to pass the upper and lower limits of the accepted weight as parameters to the filter, such as specifying
(150, 1000) to select heavier apples (over 150 grams), or specify (0, 80) to select light apples (under 80 grams).
However, as we mentioned before, Java 8 will pass the conditional code as a parameter, which can avoid duplicate code in the filter method
. Now you can write:
public static boolean isGreenApple(Apple apple) { return "green".equals(apple.getColor()); } public static boolean isHeavyApple(Apple apple) { return apple.getWeight() > 150; } static List<Apple> filterApples(List<Apple> inventory, Predicate<Apple> p) { List<Apple> result = new ArrayList<>(); for (Apple apple: inventory){ if (p.test(apple)) { result.add(apple); } } return result; }
filterApples(inventory, Apple::isGreenApple);
or
filterApples(inventory, Apple::isHeavyApple) ;
What is a predicate?
boolean) to filterApples, which expects to accept a Predicateparameter. The word predicate
is often used in mathematics to represent something like a function, which accepts a parameter value and returns true or false. As you
will see later, Java 8 will also allow you to write Function- readers who have learned functions in school but not
predicates may be more familiar with this, but use Predicate< Apple> is a more standard way and is a little more efficient. It avoids encapsulating boolean in Boolean.
Passing methods to Lambda
Passing methods as values is obviously useful, but if it is short methods like isHeavyApple and isGreenApple that
can only be used once or twice Writing a bunch of definitions is a bit annoying. However, Java 8 also solves this problem. It introduces a new notation (anonymous function or Lambda), allowing you to write
filterApples(inventory, (Apple a) -> "green".equals (a.getColor()) );
or
filterApples(inventory, (Apple a) -> a.getWeight() > 150 );
or even
filterApples(inventory, (Apple a) -> a.getWeight() < 80 ||
"brown".equals(a.getColor()) );
The complete code is:
public class FilteringApples1 { public static void main(String[] args) { List<FilteringApples1.Apple> inventory = Arrays.asList(new FilteringApples1.Apple(80, "green"), new FilteringApples1.Apple(155, "green"), new FilteringApples1.Apple(120, "red")); List<FilteringApples1.Apple> greenApples2 = filterApples(inventory, (FilteringApples1.Apple a) -> "green".equals(a.getColor())); System.out.println(greenApples2); // [Apple{color='green', weight=155}] List<FilteringApples1.Apple> heavyApples2 = filterApples(inventory, (FilteringApples1.Apple a) -> a.getWeight() > 150); System.out.println(heavyApples2); // [] List<FilteringApples1.Apple> weirdApples = filterApples(inventory, (FilteringApples1.Apple a) -> a.getWeight() < 80 || "brown".equals(a.getColor())); System.out.println(weirdApples); } public static List<FilteringApples1.Apple> filterApples(List<FilteringApples1.Apple> inventory, Predicate<FilteringApples1.Apple> p) { List<FilteringApples1.Apple> result = new ArrayList<>(); for (FilteringApples1.Apple apple : inventory) { if (p.test(apple)) { result.add(apple); } } return result; } public static class Apple { private int weight = 0; private String color = ""; public Apple(int weight, String color) { this.weight = weight; this.color = color; } public Integer getWeight() { return weight; } public void setWeight(Integer weight) { this.weight = weight; } public String getColor() { return color; } public void setColor(String color) { this.color = color; } public String toString() { return "Apple{" + "color='" + color + '\'' + ", weight=" + weight + '}'; } } }<br>Built in java8 filter function</p> <pre class="brush:php;toolbar:false">static <T> Collection<T> filter(Collection<T> c, Predicate<T> p);
This way you don’t even need to write filterApples, because for example, the previous call
filterApples(inventory, (Apple a) -> a.getWeight() > 150 );
can directly call the library method filter:
filter(inventory, (Apple a) -> a.getWeight() > 150 );
The above is the detailed content of Introduction to the usage of predicate in java8 (code example). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4
