位置: IT常识 - 正文

java8 (jdk 1.8) 新特性——Lambda

编辑:rootadmin
java8 (jdk 1.8) 新特性 ——初步认识 1. 什么是lambda? 目前已知的是,有个箭头 -> 说一大段官方话,也没有任何意义 我们直接看代码: 之前我们创建线程是这样的 Runnable runnable = new Runnable() { @Override public vo ...

推荐整理分享java8 (jdk 1.8) 新特性——Lambda,希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!

java8 (jdk 1.8) 新特性 ——初步认识

1. 什么是lambda?

目前已知的是,有个箭头->

说一大段官方话,也没有任何意义

我们直接看代码:

之前我们创建线程是这样的

Runnable runnable = new Runnable() { @Override public void run() { System.out.println("run。。。。。。"); } }; runnable.run();

用lambda:

Runnable run2 = () -> System.out.println("run。。。。。。");run2.run();

  

是不是感觉特别离谱,看不懂

别急,还有更离谱的

很常见的一个例子,比较两个整数的大小

之前是这样写的

Comparator<Integer> myCom = new Comparator<Integer>() {@Overridepublic int compare(Integer o1, Integer o2) {return Integer.compare(o1, o2);}};int compare = myCom.compare(12, 20);int compare1 = myCom.compare(20, 12);int compare2 = myCom.compare(20, 20);System.out.println(compare);System.out.println(compare1);System.out.println(compare2);}

  

用lambda:

Comparator<Integer> myCom = (o1, o2) -> Integer.compare(o1, o2);int compare = myCom.compare(12, 20);int compare1 = myCom.compare(20, 12);int compare2 = myCom.compare(20, 20);System.out.println(compare);System.out.println(compare1);System.out.println(compare2);

  甚至还可以这样 (这个是方法引用)

Comparator<Integer> myCom = Integer::compare;int compare = myCom.compare(12, 20);int compare1 = myCom.compare(20, 12);int compare2 = myCom.compare(20, 20);System.out.println(compare);System.out.println(compare1);System.out.println(compare2);

  

第一个数比第二个数

大 :返回 1

小:返回 -1

相等:返回 0

刚接触是不是黑人问号,这是什么玩意

很好,到这,你认识到了lambda 一个缺点,可阅读性差,优点 代码简洁

小结:看到 -> lambda 看到 : :方法引用

2. lamdba 语法

基本语法

1. 箭头操作符 -> 或者叫做lambda 操作符

2. 箭头操作符将lambda 表达式拆分成两部分

左侧:Lambda 表达式的参数列表

右侧:Lambda 表达式中所需执行的功能 , 即 Lambda 体

3.语法格式

语法格式1:无参数,无返回值

() -> system.out.println("Hello Lambda")

  

前边线程的那个例子就是

语法格式2:有一个参数 无返回值

(x)-> System.out.println(x);

  

若只有一个参数可以省略不写

x-> System.out.println(x);

  

java8 (jdk 1.8) 新特性——Lambda

之前的写法,没有使用lambda

Consumer<String> consumer = new Consumer<String>() {@Overridepublic void accept(String s) {System.out.println("输出的值:"+s);}};consumer.accept("今天不想emo了");

  

使用lambda

Consumer<String> consumer = s -> System.out.println("输出的值:"+s);consumer.accept("今天不想emo了");

 

语法格式3:有两个以上参数 ,并且lambda体有多条语句,有返回值

Comparator<Integer> myCom = (o1, o2) -> {System.out.println("其他语句");return Integer.compare(o1, o2);};

  

语法格式4 lambda体中只有一条语句,return 和 大括号都可以省略不写

Comparator<Integer> com =(x,y)-> Integer.compare(x,y);

  有没有发现所有的参数,都没有参数类型,之前我们写函数的时候可是要带上参数类型的

语法格式5 lambda表达式参数列表的数据类型可以省略不写,因为JVM编译器通过上下文编译推断出数据类型——类型推断

4.函数式接口

不管上面哪一种语法格式,lambda都是需要函数式接口的支持

函数式接口:接口中只有一个抽象方法的接口 称为函数式接口

可以使用一个注解@FunctionalInterface 修饰,可以检查是否是函数式接口

我们可以看看Runnable 接口 的源码

完成的接口类代码如下

/** Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms/package java.lang;/*** The <code>Runnable</code> interface should be implemented by any* class whose instances are intended to be executed by a thread. The* class must define a method of no arguments called <code>run</code>.* <p>* This interface is designed to provide a common protocol for objects that* wish to execute code while they are active. For example,* <code>Runnable</code> is implemented by class <code>Thread</code>.* Being active simply means that a thread has been started and has not* yet been stopped.* <p>* In addition, <code>Runnable</code> provides the means for a class to be* active while not subclassing <code>Thread</code>. A class that implements* <code>Runnable</code> can run without subclassing <code>Thread</code>* by instantiating a <code>Thread</code> instance and passing itself in* as the target. In most cases, the <code>Runnable</code> interface should* be used if you are only planning to override the <code>run()</code>* method and no other <code>Thread</code> methods.* This is important because classes should not be subclassed* unless the programmer intends on modifying or enhancing the fundamental* behavior of the class.** @author Arthur van Hoff* @see java.lang.Thread* @see java.util.concurrent.Callable* @since JDK1.0*/@FunctionalInterfacepublic interface Runnable {/*** When an object implementing interface <code>Runnable</code> is used* to create a thread, starting the thread causes the object's* <code>run</code> method to be called in that separately executing* thread.* <p>* The general contract of the method <code>run</code> is that it may* take any action whatsoever.** @see java.lang.Thread#run()*/public abstract void run();}

  

可以看到这里面就只有一个实现,有一个注解@FunctionalInterface ,说明它就是一个函数式接口,就可以进行lambda简写

来看 Comparator 也是一样 有@FunctionalInterface注解

这里可能就会有疑问,这边明明是有两个抽象方法,怎么是函数式接口呢?

别急 !!可以看到这边的注释, 说明这个equals 是 重写了超类 的 equals,本质上是对object 的重写,官方定义这样的抽象方法是不会被定义到 抽象接口数的 ,因此实际上只有一个抽象方法

我们自己可以试着定义 函数式接口,很简单

package com.test1.demo;@FunctionalInterfacepublic interface MyFunc {void method();}

  

好了,如果,写两个抽象接口会怎样?

可以看到注解报错了,所以注解用来校验作用就在这

重申一遍,函数式接口:接口中只有一个抽象方法的接口 称为函数式接口

注解只是拿来校验的,方便我们一看就知道这是一函数式接口类,不然还得数个数,验证一下是不是只有一个

现在我也重写equals ,可以看到并没有报错

5. java8 中内置四大核心函数式接口

Consumer<T> 消费型接口

//Consumer 消费型接口@Testpublic void testConsumer() {cosumer(1000, (m) -> System.out.println("星期一" + m));// 星期一1000.0}public void cosumer(double m, Consumer<Double> con) {con.accept(m);}

  

供给型接口 supplier<T>

@Testpublic void testSupplier() {List<Integer> numList = getNumList(10, () -> (int) (Math.random() * 100));for (Integer integer : numList) {System.out.println(integer); //100 以内10位随机整数}}// 需求:产生指定个数的整数放入集合中public List<Integer> getNumList(int num, Supplier<Integer> su) {List<Integer> list = new ArrayList<>();for (int i = 0; i < num; i++) {Integer integer = su.get();list.add(integer);}return list;}

  

Function<T,R> 函数型接口

@Testpublic void FunctioStr(){String c = getFunction("sbjikss", str -> str.toUpperCase());System.out.println(c); //SBJIKSSString sub = getFunction("sbjikss", str -> str.substring(2, 3));System.out.println(sub);//j}public String getFunction( String str, Function<String,String> f) {return f.apply(str);}

  

断言型接口 Predicate<T>

public void tetPre(){List<String> list = Arrays.asList("Hello","sss","xxxx","sjjss");List<String> list1 = filterStr(list, (pre) -> pre.length() > 3);for (String s : list1) {System.out.println(s); // Hello xxxx sjjss}}//需求:将满足条件字符串放入集合中public List<String> filterStr(List<String> old , Predicate<String> pre ){List<String> newList = new ArrayList<>();for (String str : old) {if (pre.test(str)){newList.add(str);}}return newList;}

  

感谢阅读!!!

本文链接地址:https://www.jiuchutong.com/zhishi/310492.html 转载请保留说明!

上一篇:织梦dedecms内容页上一页下一页链接调用教程(织梦cms要钱吗)

下一篇:python中Sobel算子如何使用(sobel算子 opencv)

  • 支付给员工的工资属于什么科目
  • 建筑企业差额征税如何开票
  • 烟叶税怎样计算
  • 土地增值税纳税义务人
  • 公司购买了地板可以退吗
  • 报废车残值款计入什么科目
  • 公司股东没有认缴资金
  • 非正常损失进项税额转出会计分录
  • 会计成本核算工作内容
  • 卖二手车
  • 没有预收账款应该用什么科目核算
  • 付款方式公对公什么意思
  • 无票销售纳税后怎么处理
  • 财务怎么查询微信转账单号真假
  • 增值税普通发票税率
  • 商标转让增值税税目
  • 管理费用避税
  • 对公给个人转账可以写成什么
  • 长期驻扎外地的员工
  • 怎么辨别是非
  • 公司负担劳务费的个税如何做分录
  • 怎么计算附加税税率
  • 未确认融资费用属于企业资产类科目对不对
  • 全额抵免的计算
  • 毛利率与净利率的差额
  • 什么是要约的撤销
  • 股票属于以下哪一类金融工具
  • win10系统日志在哪个文件夹
  • 个税汇算清缴已退税到账,怎么更正
  • 如何设置谷歌浏览器语言为中文
  • 新手刚接触财务
  • uni-app实例教程
  • 出差有补贴
  • vue页面路由传参
  • 机动车空白发票作废税务局需要提供说明
  • yolov5 ios
  • 电子承兑汇票支付信用查询是什么意思
  • 收到采购专用发票
  • php中session什么意思
  • thinkphp伪静态nginx
  • 借递延所得税资产贷以前年度损益调整
  • torch.cuda.is_available()
  • HTML常用的表单控件有哪些
  • modprobe operation not permitted
  • 参展费会计分录
  • 内账增值税怎么计提
  • 怎么向银行申请贷款
  • Pythonround函数作用
  • dev怎么保存项目
  • 毛利率在餐饮中的应用
  • 生产工人工资结算表格模板
  • 固定资产公司
  • 实收资本为零该怎么办
  • 辞退福利的会计分录怎么写
  • 制造费用折旧费编码
  • 残料入库计入
  • 航天信息全额抵扣分录
  • 工会经费的使用应当依法接受国家的监督
  • 重新计量设定受益计划变动额计入
  • 职工体检费如何报销
  • 删除重复记录mysql
  • MySQL timestamp的类型与时区实例详解
  • win10系统详情
  • centos 怎么用
  • 华硕主板进入bios怎么设置u盘启动
  • linux常用命令 删除
  • 无法打开文件exe
  • win10 预览窗口
  • 你需要windows7sp1才能安装ie11
  • js中的原型是什么
  • django项目中遇到的难点
  • unity 技术
  • nodejs基本原理
  • Ubuntu修改用户名
  • 安卓解析工具
  • macbookair安卓系统怎么切换到苹果
  • python排序算法比较
  • unity 3d游戏开发(第2版)
  • 国家税务总局是正部级还是副部级
  • 代理记账公司成本怎样结转的
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设