Java8 Lamdba表达式

Lambda语法定义

可以把Lambda表达式理解为简洁地表示可传递的匿名函数的一种方式:它没有名称,但它
有参数列表、函数主体、返回类型,可能还有一个可以抛出的异常列表。这个定义够大的,让我
们慢慢道来。
 匿名——我们说匿名,是因为它不像普通的方法那样有一个明确的名称:写得少而想
得多!
 函数——我们说它是函数,是因为Lambda函数不像方法那样属于某个特定的类。但和方
法一样,Lambda有参数列表、函数主体、返回类型,还可能有可以抛出的异常列表。
 传递——Lambda表达式可以作为参数传递给方法或存储在变量中。
 简洁——无需像匿名类那样写很多模板代码。

  • Lambda语法测验

根据上述语法规则,以下哪个不是有效的Lambda表达式?

(1) () -> {} 
(2) () -> “Raoul” 
(3) () -> {return “Mario”;} 
(4) (Integer i) -> return “Alan” + i; 
(5) (String s) -> {“IronMan”;}

答案:只有4和5是无效的Lambda。
(1) 这个Lambda没有参数,并返回 void 。它类似于主体为空的方法: public void run() {} 。
(2) 这个Lambda没有参数,并返回 String 作为表达式。
(3) 这个Lambda没有参数,并返回 String (利用显式返回语句)。
(4) return 是 一 个 控 制 流 语 句 。 要 使 此 Lambda 有 效 , 需 要 使 花 括 号 , 如 下 所 示 :
(Integer i) -> {return “Alan” + i;} 。
(5)“Iron Man”是一个表达式,不是一个语句。要使此Lambda有效,你可以去除花括号和分号,如下所示:
(String s) -> “Iron Man” 。或者如果你喜欢,可以使用显式返回语句,如下所示:
(String s)->{return “IronMan”;} 。

  • 函数式接口

函数式接口就是只定义一个抽象方法的接口

函数式接口测验:下面哪些接口是函数式接口?

public interface Adder{ 
int add(int a, int b); 
} 
public interface SmartAdder extends Adder{ 
int add(double a, double b); 
} 
public interface Nothing{ 
}

答案:只有 Adder 是函数式接口。
SmartAdder 不是函数式接口,因为它定义了两个叫作 add 的抽象方法(其中一个是从Adder 那里继承来的)。
Nothing 也不是函数式接口,因为它没有声明抽象方法。

  • 在哪里可以使用Lambda?

以下哪些是使用Lambda表达式的有效方式?

(1) execute(() -> {}); 
public void execute(Runnable r){ 
r.run(); 
} 
(2) 
public Callable fetch() { 
return () -> “Tricky example ;-)”; 
} 
(3) Predicate p = (Apple a) -> a.getWeight();

答案:只有1和2是有效的。
第一个例子有效,是因为Lambda () -> {} 具有签名 () -> void ,这和 Runnable 中的
抽象方法 run 的签名相匹配。请注意,此代码运行后什么都不会做,因为Lambda是空的!
第 二 个 例 子 也 是 有 效 的 。 事 实 上 , fetch 方 法 的 返 回 类 型 是 Callable 。
Callable 基本上就定义了一个方法,签名是 () -> String ,其中 T 被 String 代替 了。因为Lambda () -> “Trickyexample;-)” 的签名是 () -> String ,所以在这个上下文
中可以使用Lambda。
第三个例子无效,因为Lambda表达式 (Apple a) -> a.getWeight() 的签名是 (Apple) ->
Integer ,这和 Predicate:(Apple) -> boolean 中定义的 test 方法的签名不同。

public class FunATest {
    public static void main(String[] args) {


        FunATest funATest = new FunATest();

        //Java8写法
        funATest.execute(() -> { });//也可以什么都不做 毕竟function interface 是Runnable

        funATest.execute(() -> { System.out.printf("A1");System.out.println("A2"); });//多行必须加上{}

        funATest.execute(() -> System.out.println("B1"));//单行可以省略{}
        /*其实 () -> { }就是下面runnable后面的代码,可以看到确实省略了很多呢!*/

        //中正的做法
        Runnable runnable = () -> {
            System.out.println("run = [" + "Runnable" + "]");
        };
        funATest.execute(runnable);

        //以前的写法
        Runnable runnable1 = new Runnable() {
            @Override
            public void run() {
                System.out.println("runnable1.run");
            }
        };
        funATest.execute(runnable1);
    }

    public void execute(Runnable r) {
        new Thread(r).start();
    }
}

函数式接口@FunctionalInterface:
函数式接口定义且只定义了一个抽象method
函数式接口的抽象方法的签名称为函数描
述符。所以为了应用不同的Lambda表达式,你需要一套能够描述常见函数描述符的函数式接口。

Java API中已经有了几个函数式接口

     Predicate<T>——接收T对象并返回boolean
     Consumer<T>——接收T对象,不返回值
     Function<T, R>——接收T对象,返回R对象
     Supplier<T>——提供T对象(例如工厂),不接收值
     naryOperator<T>——接收T对象,返回T对象
     inaryOperator<T>——接收两个T对象,返回T对象

下面的code对几个函数式接口依次举例说明,最后还会对一些特殊函数式接口单独举例说明(如Function

public class FunctionTestA {
    public static void main(String[] args) {
        isDoubleBinaryOperator();
    }

    /**
     * DoubleBinaryOperator double applyAsDouble(double left, double right)
     */
    public static void isDoubleBinaryOperator(){
        DoubleBinaryOperator doubleBinaryOperatorA = (double a,double b) ->  a+b;
        DoubleBinaryOperator doubleBinaryOperatorB = (double a,double b) ->  a-b;
        System.out.println(doubleBinaryOperatorA.applyAsDouble(StrictMath.random()*100,StrictMath.random()*100));
        System.out.println(doubleBinaryOperatorB.applyAsDouble(StrictMath.random()*100,StrictMath.random()*100));
        /**
         * 像类似地DoubleBinaryOperator这样的函数式接口还有很多它们都是被FunctionalInterface注解的函数式接口
         * 被FunctionalInterface注解过的interface必须符合FunctionalInterface规范
         * IntBinaryOperator,LongBinaryOperator等都和BinaryOperator相似
         */
    }

    /**
     * BinaryOperator<T>——接收两个T对象,返回T对象
     */
    public static void isBinaryOperator(){
        BinaryOperator<StringBuilder> binaryOperator = (StringBuilder builder1,StringBuilder builder2) -> {
            builder1.append(builder2);return builder1;
        };
    }

    /**
     * UnaryOperator<T>——接收T对象,返回T对象
     */
    public static void isUnaryOperator(){
        UnaryOperator<User> unaryOperator = (User user) -> {user.setId(4);user.setUsername("alice");return user;};
        User user = unaryOperator.apply(new User());
        System.out.println(user);
    }

    /**
     * Supplier<T>——提供T对象(例如工厂),不接收值
     */
    public static void isSupplier(){
        Supplier<List<User>> supplier = () -> Collections.synchronizedList(new ArrayList<User>());
        List<User> userList = supplier.get();
        userList.add(new User("Blake",5));userList.add(new User("Alice",4));
        System.out.println(userList);
    }

    /**
     * Function<T, R>——接收T对象,返回R对象
     */
    public static void isFunction(){
        String s ="Many other students choose to attend the class, although they will not get any credit. ";
        Function<String,String[]> stringFunction = (String str) -> {return str.split("[^\\w]");};
        String[] strings = stringFunction.apply(s);
        for (String s1:strings) System.out.println(s1);

        Function stream = (S) -> {return new Object();};//奇怪的语法
        Object o = stream.apply("hello");
        System.out.println(o.getClass());
    }

    /**
     * Consumer<T>——接收T对象,不返回值
     */
    public static void isConsumer(){
        Consumer<List> listConsumer = (List list) -> {
            Iterator iterator = list.iterator();
            while (iterator.hasNext()) System.out.println(iterator.next());
        };

        List<String> list = new ArrayList<>(Arrays.asList("Alice","BOb"));
        listConsumer.accept(list);
    }

    /**
     * Predicate<T>——接收T对象并返回boolean
     */
    public static void isPredicate(){
        Predicate<String> predicate = (String s) -> { return s!=null;};
        System.out.println("判断是否为Null:"+predicate.test(null));

        Predicate<Integer> integerPredicate = (Integer a) -> {return (a>10);};
        System.out.println(integerPredicate.test(8));

        Predicate<String[]> predicateStrings = (String...strs) -> {return strs.length >= 3;};
        System.out.println(predicateStrings.test(new String[]{"","",""}));
    }
}

上面对一些函数式接口做了简单的说明,现在看下源码

@FunctionalInterface
public interface Function<T, R> {

    R apply(T t);

    default <V> Function<V, R> compose(Function<? super V, ? extends T> before) {
        Objects.requireNonNull(before);
        return (V v) -> apply(before.apply(v));
    }

    default <V> Function<T, V> andThen(Function<? super R, ? extends V> after) {
        Objects.requireNonNull(after);
        return (T t) -> after.apply(apply(t));
    }


    static <T> Function<T, T> identity() {
        return t -> t;
    }
}

可以看到都被@FunctionInterface注解 注解过,因此当我们查看oracle官方手册发现,我们是可以自定义函数式接口的
在定义函数式接口时要注意必须是interface然后是必须是一个method并且是abstract的
现在随便定义一些函数式接口

/**
 * Created by zhou on 18-1-17.
 * 自定义函数接口 FunA
 */
@FunctionalInterface
public interface FunA {
    public int add(int a, int b);
}
/**
 * Created by zhou on 18-1-17.
 * 自定义函数接口 FunB
 */
@FunctionalInterface
public interface FunB {
    public String value(String...strings);
}
/**
 * Created by zhou on 18-1-17.
 * 自定义函数接口FunC
 */
@FunctionalInterface
public interface FunC {
    public void print(String...strings);
}

然后我们在来看一些如何使用

//FunA Lambda表达式
  FunA funA = (int a, int b) -> a + b;
  System.out.println(funA.add(3, 5));

  //FunB Lambda
  String[] strings = {"h", "e", "l", "l", "o"};
  FunB funB = (String... strs) -> {//多行
      StringBuilder builder = new StringBuilder(1024);
      for (String s : strs) builder.append(s);
      return builder.toString();
  };
  System.out.println(funB.value(strings));

  //FunC Lambda
  FunC funC = (String... sts) -> System.out.println(Arrays.toString(sts));
  funC.print("Inspired by a can of tea given to him by one of his Chinese friends in 2004,".split("[^\\w]"));

  Runnable runnable = () -> System.out.println("一个线程!");
  new Thread(runnable).start();

  Predicate<Runnable> predicate = (Runnable r) -> r != null;
  System.out.println(predicate.test(runnable) ? "is not Null" : "is Null");

对单个函数式接口的说明

BinaryOperator<T>——接收两个T对象,返回T对象

UnaryOperator<T>——接收T对象,返回T对象

Function<T, R>——接收T对象,返回R对象
  • 首先Function
/**
     * 主要用来表现一些数学思想
     */
    public static void isFunction() {
        /*下面三者的写法虽然不同,但是思路都完全一致,可以看作Y->X->Z这样一步一步简化而来*/
        //f(x) = x+1
        Function<Integer, Integer> fun1Z = x -> x + 1;//标记Z
        Function<Integer, Integer> fun1X = (Integer x) -> x + 1;//标记X
        Function<Integer, Integer> fun1Y = (Integer x) -> { return x + 1; }; //标记Y

        Function<Integer, Integer> funX = x -> x * 2;
        Function<Integer, Integer> funY = x -> (x * 2) * x + 1;


        //f(x) = x*2 + 1 ==>说明:原本是f(x)=x+1 compose()设x*2 = x代入就得到了f(x) = x*2 + 1 这里要注意的是type 必须一致
        //f1(x) = x+1 , f2(x) = x*2 复合 f1(x) = f2(x) + 1;
        Function<Integer, Integer> fun1 = fun1X.compose(funX);
        System.out.println("(5*2)+1=" + fun1.apply(5));//(5*2)+1
        System.out.println("(6*2)+1=" + fun1.apply(6));//(6*2)+1

        //Function还有一个method andThen
        /*f(x) = x+1 和 f(x) = (x*2)*x+1这两个函数,
        那么andThen的用法是:当前谁调用谁就先执行执行的结果作为参数(或者数学上说的未知数X)传入andThen(fun)中fun的函数中去执行
        因此执行顺序就是fun1Y先执行,得到结果后作为X的值然后funY进行运算
        f(x) = 3+1 ==> x =4 ==>f(x) = (4*2)*4+1=33
        f(x) =((x+1)*2)*(x+1)+1
        */
        fun1 = fun1Y.andThen(funY);
        System.out.println("f(x) =((x+1)*2)*(x+1)+1 ==>((3+1)*2)*(3+1)+1=" + fun1.apply(3));


        //f(x) = x*x , f(x) = x*x*x
        Function<Integer, Long> fun2A = x -> (long) x * x;
        Function<Double, Double> fun2B = x -> x * x * x;
        System.out.println("x*x ==> 4*4=" + fun2A.apply(4) + " ");
    }

打印结果:

(5*2)+1=11
(6*2)+1=13
f(x) =((x+1)*2)*(x+1)+1 ==>((3+1)*2)*(3+1)+1=33
x*x ==> 4*4=16 
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,658评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,482评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,213评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,395评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,487评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,523评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,525评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,300评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,753评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,048评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,223评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,905评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,541评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,168评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,417评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,094评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,088评论 2 352

推荐阅读更多精彩内容

  • 简介 概念 Lambda 表达式可以理解为简洁地表示可传递的匿名函数的一种方式:它没有名称,但它有参数列表、函数主...
    刘涤生阅读 3,201评论 5 18
  • lambda表达式(又被成为“闭包”或“匿名方法”)方法引用和构造方法引用扩展的目标类型和类型推导接口中的默认方法...
    183207efd207阅读 1,477评论 0 5
  • Java8 in action 没有共享的可变数据,将方法和函数即代码传递给其他方法的能力就是我们平常所说的函数式...
    铁牛很铁阅读 1,225评论 1 2
  • Java8 实战学习 — Lambda 表达式 上一章,我们学习了参数化代码的实现方法,这个逻辑的推导对我自己来说...
    醒着的码者阅读 725评论 0 0
  • 这是一期罗胖的音频节目,主要从教育方面分析社会分层的趋势,同时对我们今后的教育趋势进行了预测————在不久的将来,...
    鉴证成长阅读 328评论 0 0