Table of Contents
ToggleJava Predicate Interface
常用於集合或 Stream 中的過濾條件,也可當作其他方法的傳入參數或是引用其他方法為實例, Predicate Interface 介紹 Collection 中的 removeIf 、 partitioningBy 與 Stream 中的 filter 、 allMatch 等方法,了解 Predicate 的不同操作和方法,本篇增加了範例,並透過單元測試來驗證產出結果。
@FunctionalInterface
public interface Predicate<T> {
boolean test(T t);
}
檔案目錄
./
+- src
+- test
| +- org
| +- ruoxue
| +- java_147
| +- functional
| +- PredicateInterfaceTest.java
單元測試
Predicate Interface Java 提供 Collection 中的 removeIf 、 partitioningBy 與 Stream 中的 filter 、 allMatch 等方法操作 Predicate Interface 。
Food
建立 Food 類別,覆寫 equals 、 hashCode ,定義屬性和方法,用來建立一個物件。
@NoArgsConstructor
@Getter
@Setter
@Builder
public static class Food {
private String name;
private double quantity;
private int type;
public Food(String name, double quantity, int type) {
this.name = name;
this.quantity = quantity;
this.type = type;
}
public String toString() {
ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.JSON_STYLE);
builder.appendSuper(super.toString());
builder.append("name", name);
builder.append("quantity", quantity);
builder.append("type", type);
return builder.toString();
}
public boolean equals(Object object) {
if (!(object instanceof Food)) {
return false;
}
if (this == object) {
return true;
}
Food other = (Food) object;
return new EqualsBuilder().append(getName(), other.getName()).isEquals();
}
public int hashCode() {
return new HashCodeBuilder().append(getName()).toHashCode();
}
}
Collection_removeIf
建立 Predicate , List 增加三個元素,移除符合條件的元素。
@Test
public void Collection_removeIf() {
int expectedSize = 1;
List<String> list = new ArrayList<>(Arrays.asList("Bacon", "Ham", "Pork"));
Predicate<String> lengthGreaterThan = s -> s.length() > 3;
list.removeIf(lengthGreaterThan);
System.out.println(list);
assertEquals(expectedSize, list.size());
List<Food> foodList = new ArrayList<>(
Arrays.asList(new Food("Bacon", 1, 1), new Food("Ham", 2, 1), new Food("Pork", 3, 1)));
Predicate<Food> lengthLessThan = o -> o.name.length() < 6;
Predicate<Food> contains = o -> o.name.contains("o");
foodList.removeIf(lengthLessThan.and(contains));
System.out.println(foodList);
assertEquals(expectedSize, foodList.size());
}
[Ham]
[{"name":"Ham","quantity":2.0,"type":1}]
Collectors_partitioningBy
Predicate Interface Java 建立 Predicate , List 增加三個元素,分區符合條件的元素。
@Test
public void Collectors_partitioningBy() {
int expectedSize = 2;
List<String> list = Arrays.asList("Bacon", "Ham", "Pork");
Predicate<String> lengthGreaterThan = s -> s.length() > 3;
Map<Boolean, List<String>> map = list.stream().collect(Collectors.partitioningBy(lengthGreaterThan));
System.out.println(map);
assertEquals(expectedSize, map.size());
List<Food> foodList = Arrays.asList(new Food("Bacon", 1, 1), new Food("Ham", 2, 1), new Food("Pork", 3, 1));
Predicate<Food> lengthLessThan = o -> o.name.length() < 6;
Predicate<Food> contains = o -> o.name.contains("o");
Map<Boolean, List<Food>> foodMap = foodList.stream()
.collect(Collectors.partitioningBy(lengthLessThan.and(contains)));
System.out.println(foodMap);
assertEquals(expectedSize, foodMap.size());
}
{false=[Ham], true=[Bacon, Pork]}
{false=[{"name":"Ham","quantity":2.0,"type":1}], true=[{"name":"Bacon","quantity":1.0,"type":1}, {"name":"Pork","quantity":3.0,"type":1}]}
Stream_filter
Predicate Interface Java 建立 Predicate , List 增加三個元素,過濾符合條件的元素。
@Test
public void Stream_filter() {
int expectedSize = 2;
List<String> list = Arrays.asList("Bacon", "Ham", "Pork");
Predicate<String> lengthGreaterThan = s -> s.length() > 3;
list = list.stream().filter(lengthGreaterThan).collect(Collectors.toList());
System.out.println(list);
assertEquals(expectedSize, list.size());
List<Food> foodList = Arrays.asList(new Food("Bacon", 1, 1), new Food("Ham", 2, 1), new Food("Pork", 3, 1));
Predicate<Food> lengthLessThan = o -> o.name.length() < 6;
Predicate<Food> contains = o -> o.name.contains("o");
foodList = foodList.stream().filter(lengthLessThan.and(contains)).collect(Collectors.toList());
System.out.println(foodList);
assertEquals(expectedSize, foodList.size());
}
[Bacon, Pork]
[{"name":"Bacon","quantity":1.0,"type":1}, {"name":"Pork","quantity":3.0,"type":1}]
Stream_allMatch
Predicate Interface Java 建立 Predicate , List 增加三個元素,過濾符合條件的元素。
@Test
public void Stream_allMatch() {
List<String> list = Arrays.asList("Bacon", "Ham", "Pork");
Predicate<String> lengthGreaterThan = s -> s.length() > 2;
boolean result = list.stream().allMatch(lengthGreaterThan);
System.out.println(result);
assertTrue(result);
List<Food> foodList = Arrays.asList(new Food("Bacon", 1, 1), new Food("Ham", 2, 1), new Food("Pork", 3, 1));
Predicate<Food> lengthLessThan = o -> o.name.length() < 6;
Predicate<Food> contains = o -> o.name.contains("o");
result = foodList.stream().allMatch(lengthLessThan.and(contains));
System.out.println(result);
assertFalse(result);
}
true
false
PredicateInterfaceTest.java
Predicate Interface in Java 新增單元測試,驗證 Java Predicate Interface Example 是否符合預期。
package org.ruoxue.java_147.functional.predicate;
import static org.junit.Assert.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import org.junit.Test;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
public class PredicateInterfaceTest {
@NoArgsConstructor
@Getter
@Setter
@Builder
public static class Food {
private String name;
private double quantity;
private int type;
public Food(String name, double quantity, int type) {
this.name = name;
this.quantity = quantity;
this.type = type;
}
public String toString() {
ToStringBuilder builder = new ToStringBuilder(this, ToStringStyle.JSON_STYLE);
builder.appendSuper(super.toString());
builder.append("name", name);
builder.append("quantity", quantity);
builder.append("type", type);
return builder.toString();
}
public boolean equals(Object object) {
if (!(object instanceof Food)) {
return false;
}
if (this == object) {
return true;
}
Food other = (Food) object;
return new EqualsBuilder().append(getName(), other.getName()).isEquals();
}
public int hashCode() {
return new HashCodeBuilder().append(getName()).toHashCode();
}
}
@Test
public void Collection_removeIf() {
int expectedSize = 1;
List<String> list = new ArrayList<>(Arrays.asList("Bacon", "Ham", "Pork"));
Predicate<String> lengthGreaterThan = s -> s.length() > 3;
list.removeIf(lengthGreaterThan);
System.out.println(list);
assertEquals(expectedSize, list.size());
List<Food> foodList = new ArrayList<>(
Arrays.asList(new Food("Bacon", 1, 1), new Food("Ham", 2, 1), new Food("Pork", 3, 1)));
Predicate<Food> lengthLessThan = o -> o.name.length() < 6;
Predicate<Food> contains = o -> o.name.contains("o");
foodList.removeIf(lengthLessThan.and(contains));
System.out.println(foodList);
assertEquals(expectedSize, foodList.size());
}
@Test
public void Collectors_partitioningBy() {
int expectedSize = 2;
List<String> list = Arrays.asList("Bacon", "Ham", "Pork");
Predicate<String> lengthGreaterThan = s -> s.length() > 3;
Map<Boolean, List<String>> map = list.stream().collect(Collectors.partitioningBy(lengthGreaterThan));
System.out.println(map);
assertEquals(expectedSize, map.size());
List<Food> foodList = Arrays.asList(new Food("Bacon", 1, 1), new Food("Ham", 2, 1), new Food("Pork", 3, 1));
Predicate<Food> lengthLessThan = o -> o.name.length() < 6;
Predicate<Food> contains = o -> o.name.contains("o");
Map<Boolean, List<Food>> foodMap = foodList.stream()
.collect(Collectors.partitioningBy(lengthLessThan.and(contains)));
System.out.println(foodMap);
assertEquals(expectedSize, foodMap.size());
}
@Test
public void Stream_filter() {
int expectedSize = 2;
List<String> list = Arrays.asList("Bacon", "Ham", "Pork");
Predicate<String> lengthGreaterThan = s -> s.length() > 3;
list = list.stream().filter(lengthGreaterThan).collect(Collectors.toList());
System.out.println(list);
assertEquals(expectedSize, list.size());
List<Food> foodList = Arrays.asList(new Food("Bacon", 1, 1), new Food("Ham", 2, 1), new Food("Pork", 3, 1));
Predicate<Food> lengthLessThan = o -> o.name.length() < 6;
Predicate<Food> contains = o -> o.name.contains("o");
foodList = foodList.stream().filter(lengthLessThan.and(contains)).collect(Collectors.toList());
System.out.println(foodList);
assertEquals(expectedSize, foodList.size());
}
@Test
public void Stream_allMatch() {
List<String> list = Arrays.asList("Bacon", "Ham", "Pork");
Predicate<String> lengthGreaterThan = s -> s.length() > 2;
boolean result = list.stream().allMatch(lengthGreaterThan);
System.out.println(result);
assertTrue(result);
List<Food> foodList = Arrays.asList(new Food("Bacon", 1, 1), new Food("Ham", 2, 1), new Food("Pork", 3, 1));
Predicate<Food> lengthLessThan = o -> o.name.length() < 6;
Predicate<Food> contains = o -> o.name.contains("o");
result = foodList.stream().allMatch(lengthLessThan.and(contains));
System.out.println(result);
assertFalse(result);
}
}
心得分享
Java Predicate Interface Example 使用 Lambda 表達式能讓程式碼更加簡潔與直接,取代傳統實作接口的方法,減少了很多程式碼,大幅提高可讀性, Predicate Interface in Java 提供了幾種 Predicate 常見方法的操作範例,熟悉這些方法的操作,能夠提高開發效率,節省維護上的成本。