Java1.8新特性——代码示例

Java新特性

Java8

新特性简介

  • 速度更快
  • 代码更少
  • 强大的Stream API
  • 便于并行
  • 最大化减少空指针异常
  • Nashorn引擎,

Lambda表达式

Lambda本质:作为函数式接口的实例

使用箭头函数

public void test1(){
    Runnable r1 = new Runnable() {
        @Override
        public void run() {
            System.out.println("dddd");
        }
    };
    r1.run();
    System.out.println("*****");
    //lambda表达式
    Runnable r2 = ()->System.out.println("lambda");
    r2.run();

    Comparator<Integer> com1 = new Comparator<Integer>() {
        @Override
        public int compare(Integer o1, Integer o2) {
            return Integer.compare(o1,o2);
        }
    };
    //lambda写法
    Comparator<Integer> com2 = (o1, o2) -> Integer.compare(o1,o2);
    //方法引用
    Comparator<Integer> com3 = Integer::compare;
}
语法格式

语法格式一:无参,无返回值

Runnable t1 = ()->System.out.println("dddd");

语法格式二:一个参数,无返回值

Consumer<String> con2 = (String s)->System.out.println(s);

语法格式三:数据类型可省略

Consumer<String> con2 = (s)->{System.out.println(s);};

语法格式四:Lambda 若只需要一个参数时,参数的小括号可以省略

Consumer<String> con2 = s->{System.out.println(s);};

语法格式五:Lambda 需要两个或以上的参数,多条执行语句,并且可以有返回值

Comparator<Integer> com2 = (o1,o2)->{
    System.out.println(o1);
    System.out.println(o2);
    return o1.compareTo(o2);
};

语法格式六:当 Lambda 体只有一条语句时,return 与大括号若有,都可以省略

//只有一条语句时,则可以省略{},若该条语句为返回值,则省略{}的同时必须省略return
Comparator<Integer> com2 = (o1,o2)->o1.compareTo(o2);

函数式接口(Functional)

如果一个接口中只声明了一个方法,则此接口称为函数式接口

//@FunctionalInterface表示这个接口为函数式接口
@FunctionalInterface
public interface MyInterface {
    void method1();
}
Java内置四大核心函数式接口
函数式接口参数类型返回类型用途
Consumer 消费型接口Tvoid对类型为T的对象应用操作,包含方法: void accept(T t)
Supplier 供给型接口TT 返回类型为T的对象,包含方法:T get() R
Function<T, R> 函数型接口TR对类型为T的对象应用操作,并返回结果。结 果是R类型的对象。包含方法:R apply(T t)
Predicate 断定型接口Tboolean确定类型为T的对象是否满足某约束,并返回 boolean 值。包含方法:boolean test(T t)
其他接口

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ncVgiTTC-1608210690101)(https://picgo-starry.oss-cn-beijing.aliyuncs.com/img/java8%E6%96%B0%E7%89%B9%E6%80%A7%E5%87%BD%E6%95%B0%E5%BC%8F%E6%8E%A5%E5%8F%A3(%E5%85%B6%E4%BB%96%E6%8E%A5%E5%8F%A3)].png)

//消费型接口
public void test01(){
    happyTime(500,money->System.out.println("money:"+money));
}
public void happyTime(double money, Consumer<Double> con){
    con.accept(money);
}
//断定型接口
public void test2(){
    List<String> list = Arrays.asList("北京","南京","成都");
    ArrayList list2 = filterString(list, s -> s.contains("京"));
}
//根据给定的规则过滤字符串,此规则由Predicate的方法决定
public ArrayList filterString(List<String> list, Predicate<String> pre){
    ArrayList<String> filterList= new ArrayList<>();
    for(String s:list){
        if(pre.test(s)){
            filterList.add(s);
        }
    }
    return filterList;
}

方法引用与构造器引用

方法引用
  • 当要传递给Lambda体的操作,已经有实现的方法了,可以使用方法引用!

  • 方法引用可以看做是Lambda表达式深层次的表达。换句话说,方法引用就 是Lambda表达式,也就是函数式接扣的一个实例,通过方法的名字来指向 一个方法,可以认为是Lambda表达式的一个语法糖。

  • 要求:实现接口的抽象方法的参数列表和返回值类型,必须与方法引用的方法的参数列表和返回值类型保持一致!(针对下面的情况一和情况二)

  • 格式:使用操作符“::” 将类(或对象) 与方法名分隔开来。如下三种主要使用情况:

    • 对象::实例方法名
    • 类::静态方法名
    • 类::实例方法名
对象::实例方法名
// 情况一:对象 :: 实例方法
//Consumer中的void accept(T t)
//PrintStream中的void println(T t)
//因为accept和println的形参一样,并且都是输出语句的功能,所以可使用方法引用
	Consumer<String> con2 = System.out::println;
	con1.accept("ddd");
//=============2===============
//Supplier中的T get()
//Employee中的String getName()
public void test2() {
    Employee emp = new Employee(1001, "Tom", 23, 6200);
    Supplier<String> sup1 = () -> emp.getName();
    System.out.println(sup1.get());
    //方法引用
    Supplier<String> sup2 = emp::getName;
    System.out.println(sup2.get());
}
类::静态方法名
// 情况二:类 :: 静态方法
//Comparator中的int compare(T t1,T t2)
//Integer中的int compare(T t1,T t2)
public void test3() {
    Comparator<Integer> com1 = (t1, t2) -> Integer.compare(t1, t2);
    System.out.println(com1.compare(12, 21));
    //方法引用
    Comparator<Integer> com2 = Integer::compare;
}
//=============2===============
//Function中的R apply(T t)
//Math中的Long round(Double d)
public void test4() {
    //这里使用Math.round,形参一样,并且都是要使用这个功能,所以可实用方法用
    Function<Double, Long> func1 = d -> Math.round(d);
    System.out.println(func1.apply(12.5));
    Function<Double, Long> func2 = Math::round;
    //方法引用
    System.out.println(func2.apply(13.9));
}
类::实例方法名
// 情况三:类 :: 实例方法 (有难度)
// Comparator中的int comapre(T t1,T t2)
// String中的int t1.compareTo(t2)
//第一个参数是作为调用者出现的,也可以使用方法引用
public void test5() {
    Comparator<String> comparator1 = (s1, s2) -> s1.compareTo(s2);
    System.out.println(comparator1.compare("abc", "vc"));
    //方法引用,第一个
    Comparator<String> comparator2 = String::compareTo;
    System.out.println(comparator2.compare("abc", "abc"));
}
//=============2===============
//BiPredicate中的boolean test(T t1, T t2);
//String中的boolean t1.equals(t2)
public void test6() {
    BiPredicate<String,String> pre1 = (s1,s2)->s1.equals(s2);
    System.out.println(pre1.test("abc", "abc"));
    //方法引用
    BiPredicate<String,String> pre2 = String::equals;
    System.out.println(pre2.test("ab1", "abc"));
}
构造器引用

和方法引用类似,函数式接口的抽象方法的形参列表和构造器形参列表一致

抽象方法的返回值类型即为构造器所属的类的类型。

Supplier<Employee> sup =()->new Employee();
//构造器引用
Supplier<Employee> sup2 = Employee::new;
//========2=======
Function<Integer, Employee> func = id->new Employee(id);
Function<Integer,Employee> func2 = Employee::new;
//========3=======
BiFunction<Integer,String,Employee> func = (id,name)->new Employee(id,name);
BiFunction<Integer,String,Employee> func2 = Employee::new;
数组引用

将数组看作是一个特殊的类

Function<Integer,String[]> func = length->new String[length];
String[] apply = func.apply(5);
System.out.println(Arrays.toString(apply));
Function<Integer,String[]> fun = String[]::new;

StreamAPI

java8中两大最为重要的改变。第一个是Lambda,一个是StreamAPI。

  • Stream API ( java.util.stream) 把真正的函数式编程风格引入到Java中。让程序员写出高效率、干净、简洁的代码。

  • Stream 是 Java8 中处理集合的关键抽象概念,它可以指定你希望对集合进 行的操作,可以执行非常复杂的查找、过滤和映射数据等操作。使用 Stream API 对集合数据进行操作,就类似于使用 SQL 执行的数据库查询。 也可以使用 Stream API 来并行执行操作。简言之,Stream API 提供了一种 高效且易于使用的处理数据的方式。

Stream概述

Stream是数据渠道,用于操作数据源(集合,数组等)所生成的元素序列。

集合讲究的是数据,Stream讲究的是计算。

注意

  • Stream 自己不会存储元素。
  • Stream 不会改变源对象。相反,他们会返回一个持有结果的新Stream。
  • Stream 操作是延迟执行的。这意味着他们会等到需要结果的时候才执行
Stream操作步骤

image-20201217160154309

Stream的创建

创建Stream方式一:通过集合

List<Employee> employees = EmployeeData.getEmployees();
//串行流
Stream<Employee> stream = employees.stream();
//并行流
Stream<Employee> employeeStream = employees.parallelStream();

创建Stream方式二:通过数组

int[] arr = new int[]{1,2,3,4,56};
//基本数据类型会有对应的流,例如LongStream等
IntStream stream = Arrays.stream(arr);
Employee e1 = new Employee();
Employee e2 = new Employee();
Employee[] employees = new Employee[]{e1,e2};
Stream<Employee> stream1 = Arrays.stream(employees);

创建Stream方式三:通过Stream的of()

Stream<Integer> integerStream = Stream.of(1, 2, 3, 4);

创建Stream方式四:通过集合创建无限流

//遍历前10个偶数,通过迭代的方式
Stream.iterate(0,t->t+2).limit(10).forEach(System.out::println);
//通过生成的方式
Stream.generate(Math::random).limit(10).forEach(System.out::println);
Stream的中间操作
筛选与切片
方法描述
filter(Predicate p)接收 Lambda ,从流中排除某些元素 distinct()
limit(long maxSize)截断流,使其元素不超过给定数量 skip(long n)
skip(n)跳过元素,返回一个扔掉了前 n 个元素的流。若流中元素不足 n 个,则返回一 个空流。与 limit(n) 互补
distinct()筛选,通过流所生成元素的 hashCode() 和 equals() 去除重复元素

过滤

List<Employee> list = EmployeeData.getEmployees();
//    filter(Predicate p) 接收 Lambda ,从流中排除某些元素 distinct()
Stream<Employee> stream = list.stream();
stream.filter(e->e.getSalary()>7000).forEach(System.out::println);

截断

list.stream().limit(3).forEach(System.out::println);

跳过元素

list.stream().skip(3).forEach(System.out::println);

筛选(去重

list.stream().distinct().forEach(e->System.out.println(e));
映射

image-20201217174627102

//映射
public void test02(){
    //map(Function f) 接收一个函数作为参数,该函数会被应用到每个元素上,并将其映射成一个新的元素
    List<String> list = Arrays.asList("aa", "bb", "cc", "dd");
    list.stream().map(str->str.toUpperCase()).forEach(System.out::println);

    //练习1:获取员工姓名长度大于3的员工姓名
    List<Employee> employees = EmployeeData.getEmployees();
    employees.stream().map(Employee::getName).filter(name->name.length()>3).forEach(System.out::println);
    //练习2:map和flatMap的区别
    //map相当于list中套list
    Stream<Stream<Character>> streamStream = list.stream().map(StreamAPIMiddleTest::fromStringToStream);
    //相当于两层循环
    streamStream.forEach(s->{
        s.forEach(System.out::println);
    });
    //flatMap相当于把list中的数据加入到另一个list中,而不是直接把list加进去
    Stream<Character> streamStream2 = list.stream().flatMap(StreamAPIMiddleTest::fromStringToStream);
    //直接一层即可取到
    streamStream2.forEach(System.out::println);
    //flatMap(Function f)接收一个函数作为参数,将流中的每个值都换成另 一个流,然后把所有流连接成一个流
}
//将字符串中多个字符构成的集合,转换为对应的Stream实例
public static Stream<Character> fromStringToStream(String str){
    ArrayList<Character> list = new ArrayList<>();
    for(Character c:str.toCharArray()){
        list.add(c);
    }
    return list.stream();
}
排序
public void test03(){
    //sorted-----自然排序
    List<Integer> list = Arrays.asList(12,78,0,2);
    list.stream().sorted().forEach(System.out::println);
    //抛异常,原因;Employee没有实现Comparable接口
    List<Employee> employees = EmployeeData.getEmployees();
    //        employees.stream().sorted().forEach(System.out::println);
    //sorted(Comparator com)-----定制排序
    employees.stream().sorted((e1,e2)-> Integer.compare(e1.getAge(),e2.getAge())).forEach(System.out::println);
    //优化写法
    employees.stream().sorted(Comparator.comparingInt(Employee::getAge)).forEach(System.out::println);
}
终止

1、匹配与查找

image-20201217184318705

image-20201217184355132

List<Employee> employees = EmployeeData.getEmployees();
//        allMatch(Predicate p) 检查是否匹配所有元素,所有的都是true才是true
boolean allMatch = employees.stream().allMatch(e -> e.getAge() > 18);
//        anyMatch(Predicate p) 检查是否至少匹配一个元素
boolean anyMatch = employees.stream().anyMatch(e -> e.getSalary() > 10000);
//        noneMatch(Predicate p) 检查是否没有匹配所有元素
boolean noneMatch = employees.stream().noneMatch(e -> e.getName().startsWith("雷"));
//        findFirst() 返回第一个元素
Optional<Employee> employee = employees.stream().findFirst();
//        findAny() 返回当前流中的任意元素
Optional<Employee> employee1 = employees.parallelStream().findAny();
//        count() 返回流中元素总数
long count = employees.stream().filter(e -> e.getSalary() > 5000).count();
//        max(Comparator c) 返回流中最大值
Optional<Double> max = employees.stream().map(Employee::getSalary).max(Double::compare);
//        min(Comparator c) 返回流中最小值
Optional<Employee> min = employees.stream().min(Comparator.comparingDouble(Employee::getSalary));
//        forEach(Consumer c)内部迭代
employees.stream().forEach(System.out::println);
//外部迭代
employees.forEach(System.out::println);

2、归约

image-20201217185344603

public void test03(){
    //reduce(T iden, BinaryOperator b) 可以将流中元素反复结合起来,得到一 个值。返回 T
    //练习1:计算1-10的自然数的和
    List<Integer> list = Arrays.asList(1,2,3,4,5,6,7,8,9,10);
    Integer sum = list.stream().reduce(0, Integer::sum);
    //reduce(BinaryOperator b)可以将流中元素反复结合起来,得到一 个值。返回 Optional<T>
    //练习2:计算公司所有员工工资的总和
    List<Employee> employees = EmployeeData.getEmployees();
    Optional<Double> reduce = employees.stream().map(Employee::getSalary).reduce(Double::sum);
}

3、收集

image-20201217185418238

public void test04(){
    //collect(Collector c)将流转换为其他形式。接收一个 Collector 接口的实现,用于给Stream中元素做汇总 的方法
    //练习1:查找工资大于6000的员工,结果返回一个List或Set
    List<Employee> employees = EmployeeData.getEmployees();
    List<Employee> collect = employees.stream().filter(e -> e.getSalary() > 6000).collect(Collectors.toList());

}

Optional类

Optional 类(java.util.Optional) 是一个容器类,它可以保存类型T的值,代表 这个值存在。或者仅仅保存

null,表示这个值不存在。原来用 null 表示一个值不 存在,现在 Optional 可以更好的表达这个概念。并且可以避

免空指针异常

image-20201217191409554

//Boy类中,Girl类为成员变量
public void test2() {
    Girl girl = new Girl();
    girl=null;
    //ofNullable可以为空
    Optional<Girl> girl1 = Optional.ofNullable(girl);
    //如果 当前Optional 内部封装的是非空的,则正常返回,否则返回备用的
    Girl g = girl1.orElse(new Girl("ddd"));
    System.out.println(g);
}
public String getGirlName3(Boy boy){
    Optional<Boy> boyOptional = Optional.ofNullable(boy);
    //此时boy1一定非空
    Boy boy1 = boyOptional.orElse(new Boy(new Girl("dd2")));
    Girl girl = boy1.getGirl();
    Optional<Girl> girlOptional = Optional.ofNullable(girl);
    Girl girl1 = girlOptional.orElse(new Girl("dd3"));
    return girl1.getName();
}

新的时间API

关于Java8之前以及Java8之后的日期API相关都在下面链接

Java日期时间处理

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值