Java 引用

本文展示了如何使用Java 8的函数式接口,如Function、Consumer、Supplier和Predicate,以及自定义的IFunction接口进行方法引用操作。通过示例代码,解释了Lambda表达式在创建和调用这些接口实现过程中的应用。
摘要由CSDN通过智能技术生成

引用数据类型最大的特点是可以进行内存的指向处理 不同方法名描述同一个方法
在这里插入图片描述
自有定义:

@FunctionalInterface
public interface Function<T,R>{
    public R apply(T t) ;
}
@FunctionalInterface
public interface Consumer<T>{
    public void accept(T t) ;
}
@FunctionalInterface
public interface Supplier<T>{
    public T get() ;
}
//断言函数式接口 进行判断处理 equalsIgnareCase()
@FunctionalInterface
public interface Predicate<T>{
    public boolean test(T t) ;
}

代码:

package com.msc.example;

import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.Supplier;

interface  IFunction<K,R>{
    public K change(R r);
}
interface  IFunctionb<R>{
    public R upper();
}
interface  IFunctionc<P>{
    public int compare(P p1,P p2);
}
interface  IFunctiond<P>{
    public P create(String n,int a);
}
class Example{
    private String name ;
    private int age ;
    public Example(String namr,int age){
        this.age = age ;
        this.name = name ;
    }

    @Override
    public String toString() {
        return "Example{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}
public class FunctionDemo {
    public static void main(String[] args) {
        IFunction<String,Integer> fun = String :: valueOf;
        IFunctionb<String> funb = "test" :: toUpperCase;
        IFunctionc<String> func = String :: compareTo;
        IFunctiond<Example> fund = Example::new ;
        String str = fun.change(100) ;
        System.out.println(str);
        System.out.println(funb.upper());
        System.out.println(func.compare("A","a"));
        System.out.println(fund.create("里斯",20));
        System.out.println("-------------------------------");
        Function<String,Boolean> funl = "**hello" :: startsWith;
        System.out.println(funl.apply("**"));
        Consumer<String> con = System.out :: println;
        con.accept("Consumer");
        Supplier<String> sup = "com.mSc.cn" :: toLowerCase;
        System.out.println(sup.get());
        Predicate<String> pre = "com" :: equalsIgnoreCase;
        System.out.println(pre.test("Com"));
    }
}

在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

隔壁de小刘

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值