Java 8 新特性:4-断言(Predicate)接口

(原)

这个接口主要用于判断,先看看它的实现,说明,再给个例子。

/*
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */
package java.util.function;

import java.util.Objects;

/**
 * Represents a predicate (boolean-valued function) of one argument.
 * 根据一个参数代表了一个基于boolean类型的断言
 * <p>This is a <a href="package-summary.html">functional interface</a>
 * whose functional method is {@link #test(Object)}.
 *这是一个函数式接口,它的函数方法是test
 * @param <T> the type of the input to the predicate
 *根据输入类型得到一个断言
 * @since 1.8
 */
@FunctionalInterface
public interface Predicate<T> {

    /**
     * Evaluates this predicate on the given argument.
     *根据给定的参数获得判断的结果
     * @param t the input argument
     * @return {@code true} if the input argument matches the predicate,
     * otherwise {@code false}
     */
    boolean test(T t);

    /**
     * Returns a composed predicate that represents a short-circuiting logical
     * AND of this predicate and another.  When evaluating the composed
     * predicate, if this predicate is {@code false}, then the {@code other}
     * predicate is not evaluated.
     * 通过这个predicate和它的参数predicate 返回一个逻辑与的判断结果,
 *当去计算这个复合的predicate时,如果当前的predicate 结果是false,那么就不会计算它的参数other的值。
     * <p>Any exceptions thrown during evaluation of either predicate are relayed
     * to the caller; if evaluation of this predicate throws an exception, the
     * {@code other} predicate will not be evaluated.
     *如果这二个其中任何一个抛出异常,具体的处理交给调用的人,如果抛出了异常,它将不会被执行。
     * @param other a predicate that will be logically-ANDed with this
     *              predicate
     * @return a composed predicate that represents the short-circuiting logical
     * AND of this predicate and the {@code other} predicate
     * @throws NullPointerException if other is null
     */
    default Predicate<T> and(Predicate<? super T> other) {
        Objects.requireNonNull(other);
        return (t) -> test(t) && other.test(t);
    }

    /**
     * Returns a predicate that represents the logical negation of this
     * predicate.
     * 返回一个predicate 代表了这个predicate的逻辑非
     * @return a predicate that represents the logical negation of this
     * predicate
     */
    default Predicate<T> negate() {
        return (t) -> !test(t);
    }

    /**
     * Returns a composed predicate that represents a short-circuiting logical
     * OR of this predicate and another.  When evaluating the composed
     * predicate, if this predicate is {@code true}, then the {@code other}
     * predicate is not evaluated.
     *通过这个predicate和它的参数predicate 返回一个逻辑或的判断结果,
当计算这个组合的predicate,如果这个predicate是true ,那么它的参数other将不会计算
     * <p>Any exceptions thrown during evaluation of either predicate are relayed
     * to the caller; if evaluation of this predicate throws an exception, the
     * {@code other} predicate will not be evaluated.
     *如果这二个其中任何一个抛出异常,具体的处理交给调用的人,如果抛出了异常,它将不会被执行。
     * @param other a predicate that will be logically-ORed with this
     *              predicate
     * @return a composed predicate that represents the short-circuiting logical
     * OR of this predicate and the {@code other} predicate
     * @throws NullPointerException if other is null
     */
    default Predicate<T> or(Predicate<? super T> other) {
        Objects.requireNonNull(other);
        return (t) -> test(t) || other.test(t);
    }

    /**
     * Returns a predicate that tests if two arguments are equal according
     * to {@link Objects#equals(Object, Object)}.
     *如果二个参数机等的话,根据Objects#equals(Object, Object)返回一个断言的结果
     * @param <T> the type of arguments to the predicate
     * @param targetRef the object reference with which to compare for equality,
     *               which may be {@code null}
     * @return a predicate that tests if two arguments are equal according
     * to {@link Objects#equals(Object, Object)}
     */
    static <T> Predicate<T> isEqual(Object targetRef) {
        return (null == targetRef)
                ? Objects::isNull
                : object -> targetRef.equals(object);
    }
}

  

这里其实慢慢看它的doc文档,还真没有直接看它的实现来的快。无非就是一个判断的函数式接口,主要做逻辑与或非的判断,其中还有一个静态方法,其实现是这样的:

return (null == targetRef)
                ? Objects::isNull
                : object -> targetRef.equals(object);

  

null == targetRef这个就不说了,因为它的返回结果是predicate,所以Objects::isNull必需是predicate的实例,它代表了一个方法的引用,为什么它符合这个函数式接口的唯一抽象方法boolean test(T t);这个呢?我们进去看下它的实现。

public static boolean isNull(Object obj) {
        return obj == null;
} 

这是一个静态的方法引用,接收一个Object类型的参数,返回一个boolean类型,这完全附合这个函数式接口的boolean test(T t);抽象方法,那么编译器就会认为它是predicate这个函数式接口的一个实现。

下面给出一个例子,看下怎么使用的,结果我就不分析了。

package com.demo.jdk8;

import java.util.Arrays;
import java.util.List;
import java.util.function.Predicate;

public class Test4 {

	public static void main(String[] args) {
		Predicate<String> p = s -> s.length() > 3;

		System.out.println(p.test("hello"));

		List<Integer> list = Arrays.asList(1,2,3,4,5,6,7,8);
		System.out.println("part1------------------");
		findOdd(list);
		System.out.println("part2------------------");
		conditionFilter(list, ppp -> ppp % 2 == 1);
		System.out.println("part3------------------");
		and(list, p1 -> p1 > 3, p2 -> p2 < 7);
		System.out.println("part4------------------");
		or(list,  p1 -> p1 > 3, p2 -> p2 % 2 == 1);
		System.out.println("part5------------------");
		negate(list, p1 -> p1 > 3);
		System.out.println("part6------------------");
		System.out.println(isEqual("abc").test("abcd"));

	}

	//找到集合中的奇数
	public static void findOdd(List<Integer> list){
		for (int i = 0; i < list.size(); i++) {
			if(list.get(i) % 2 == 1){
				System.out.println(list.get(i));
			}
		}
	}

	public static void conditionFilter(List<Integer> list,Predicate<Integer> p){
		for (int i = 0; i < list.size(); i++) {
			if(p.test(list.get(i))){
				System.out.println(list.get(i));
			}
		}
	}

	public static void and(List<Integer> list,Predicate<Integer> p1,Predicate<Integer> p2){
		for (int i = 0; i < list.size(); i++) {
			if(p1.and(p2).test(list.get(i))){
				System.out.println(list.get(i));
			}
		}
	}

	public static void or(List<Integer> list,Predicate<Integer> p1,Predicate<Integer> p2){
		for (int i = 0; i < list.size(); i++) {
			if(p1.or(p2).test(list.get(i))){
				System.out.println(list.get(i));
			}
		}
	}

	public static void negate(List<Integer> list,Predicate<Integer> p1){
		for (int i = 0; i < list.size(); i++) {
			if(p1.negate().test(list.get(i))){
				System.out.println(list.get(i));
			}
		}
	}

	public static Predicate isEqual(Object obj){
		return Predicate.isEqual(obj);
	}
}

  

时间: 2024-11-16 05:14:27

Java 8 新特性:4-断言(Predicate)接口的相关文章

Java 8 新特性1-函数式接口

Java 8 新特性1-函数式接口 (原) Lambda表达式基本结构: (param1,param2,param3) -> {代码块} 例1: package com.demo.jdk8; import java.util.Arrays; import java.util.List; import java.util.function.Consumer; public class Test2 { public static void main(String[] args) { for_test

Java 8 新特性概述

Oracle 在 2014 年 3 月发布了 Java 8 正式版,该版本是一个有重大改变的版本,对 JAVA 带来了诸多新特性.其中主要的新特性涵盖:函数式接口.Lambda 表达式.集合的流式操作.注解的更新.安全性的增强.IO\NIO 的改进.完善的全球化功能等.本文将对 Java 8 中几个重要新特性进行介绍. 函数式接口 Java 8 引入的一个核心概念是函数式接口(Functional Interfaces).通过在接口里面添加一个抽象方法,这些方法可以直接从接口中运行.如果一个接口

Java 8新特性之旅:使用Stream API处理集合

在这篇“Java 8新特性教程”系列文章中,我们会深入解释,并通过代码来展示,如何通过流来遍历集合,如何从集合和数组来创建流,以及怎么聚合流的值. 在之前的文章“遍历.过滤.处理集合及使用Lambda表达式增强方法”中,我已经深入解释并演示了通过lambda表达式和方法引用来遍历集合,使用predicate接口来过滤集合,实现接口的默认方法,最后还演示了接口静态方法的实现. 源代码都在我的Github上:可以从 这里克隆. 内容列表 使用流来遍历集合. 从集合或数组创建流. 聚合流中的值. 1.

Java—Java 8 新增特性详解(Predicate和Stream)

Predicate接口 Predicate接口介绍 ??Predicate是函数式接口,可以使用Lambda表达式作为参数.Java 8为集合Collection新增了removeIf(Predicate filter)方法,可以批量删除符合filter条件的所有元素. Predicate接口使用范例 测试Collection的removeIf()方法. 示例1 1)运行类: public class DemoApplication { public static void main(Strin

Java 8新特性前瞻

快端午小长假了,要上线的项目差不多完结了,终于有时间可以坐下来写篇博客了. 这是篇对我看到的java 8新特性的一些总结,也是自己学习过程的总结. 几乎可以说java 8是目前为止,自2004年java 5发布以来的java世界中最大的事件了.它带来了java语言层面上的诸多改变,主要包括下面一些方面:语法.编译器.库.工具和运行时. 一,语法层面: 1,Lambda表达式. lambda表达式是一种可调用对象,它允许我们将函数作为函数参数传入.诸如C++.Groovy.Scala都已经支持la

Java 8 新特性 – 终极手册整理

1.简介 毫无疑问,Java 8是自Java  5(2004年)发布以来Java语言最大的一次版本升级,Java 8带来了很多的新特性,比如编译器.类库.开发工具和JVM(Java虚拟机).在这篇教程中我们将会学习这些新特性,并通过真实例子演示说明它们适用的场景. 本教程由下面几部分组成,它们分别涉及到Java平台某一特定方面的内容: 语言 编译器 类库 开发工具 运行时(Java虚拟机) 2.Java的新特性 总体来说,Java 8是一个大的版本升级.有人可能会说,Java 8的新特性非常令人

Spring 4支持的Java 8新特性一览

有众多新特性和函数库的Java 8发布之后,Spring 4.x已经支持其中的大部分.有些Java 8的新特性对Spring无影响,可以直接使用,但另有些新特性需要Spring的支持.本文将带您浏览Spring 4.0和4.1已经支持的Java 8新特性. Spring 4支持Java 6.7和8 Java 8编译器编译过的代码生成的.class文件需要在Java 8或以上的Java虚拟机上运行.由于Spring对反射机制和ASM.CGLIB等字节码操作函数库的重度使用,必须确保这些函数库能理解

【整理】Java 8新特性总结

闲语: 相比于今年三月份才发布的Java 10 ,发布已久的Java 8 已经算是老版本了(传闻Java 11将于9月25日发布....).然而很多报道表明:Java 9 和JJava10不是 LTS 版本,和过去的 Java 大版本升级不同,它们只有半年左右的开发和维护期.而未来的 Java11,也就是 18.9 LTS,才是 Java 8 之后第一个 LTS 版本(得到 Oracle 等商业公司的长期支持服务).所以Java 8 就成了最新的一次LTS版本升级,这也是为什么Java开发者对J

Java 11 新特性介绍

Java 11 已于 2018 年 9 月 25 日正式发布,之前在Java 10 新特性介绍中介绍过,为了加快的版本迭代.跟进社区反馈,Java 的版本发布周期调整为每六个月一次——即每半年发布一个大版本,每个季度发布一个中间特性版本,并且做出不会跳票的承诺.通过这样的方式,Java 开发团队能够将一些重要特性尽早的合并到 Java Release 版本中,以便快速得到开发者的反馈,避免出现类似 Java 9 发布时的两次延期的情况. 按照官方介绍,新的版本发布周期将会严格按照时间节点,于每年

Java 9 新特性

Java 9 发布于 2017 年 9 月 22 日,带来了很多新特性,其中最主要的变化是已经实现的模块化系统.接下来我们会详细介绍 Java 9 的新特性. Java 9 新特性 模块系统:模块是一个包的容器,Java 9 最大的变化之一是引入了模块系统(Jigsaw 项目). REPL (JShell):交互式编程环境. HTTP 2 客户端:HTTP/2标准是HTTP协议的最新版本,新的 HTTPClient API 支持 WebSocket 和 HTTP2 流以及服务器推送特性. 改进的