ToB企服应用市场:ToB评测及商务社交产业平台

标题: Java8知识梳理 [打印本页]

作者: 嚴華    时间: 2023-9-2 14:23
标题: Java8知识梳理
Java 8 的改进


一、Lambda 表达式





  1. public class Java8Tester {
  2.    public static void main(String args[]){
  3.       Java8Tester tester = new Java8Tester();
  4.         
  5.       // 类型声明
  6.       MathOperation addition = (int a, int b) -> a + b;
  7.         
  8.       // 不用类型声明
  9.       MathOperation subtraction = (a, b) -> a - b;
  10.         
  11.       // 大括号中的返回语句
  12.       MathOperation multiplication = (int a, int b) -> { return a * b; };
  13.         
  14.       // 没有大括号及返回语句
  15.       MathOperation division = (int a, int b) -> a / b;
  16.         
  17.       System.out.println("10 + 5 = " + tester.operate(10, 5, addition));//10 + 5 = 15
  18.       System.out.println("10 - 5 = " + tester.operate(10, 5, subtraction));//10 - 5 = 5
  19.       System.out.println("10 x 5 = " + tester.operate(10, 5, multiplication));//10 x 5 = 50
  20.       System.out.println("10 / 5 = " + tester.operate(10, 5, division));//10 / 5 = 2
  21.         
  22.       // 不用括号
  23.       GreetingService greetService1 = message ->
  24.       System.out.println("Hello " + message);
  25.         
  26.       // 用括号
  27.       GreetingService greetService2 = (message) ->
  28.       System.out.println("Hello " + message);
  29.         
  30.       greetService1.sayMessage("Runoob");//Hello Runoob
  31.       greetService2.sayMessage("Google");//Hello Google
  32.    }
  33.    
  34.    interface MathOperation {
  35.       int operation(int a, int b);
  36.    }
  37.    
  38.    interface GreetingService {
  39.       void sayMessage(String message);
  40.    }
  41.    
  42.    private int operate(int a, int b, MathOperation mathOperation){
  43.       return mathOperation.operation(a, b);
  44.    }
  45. }
复制代码
  1. public class Java8Tester {
  2.     public static void main(String args[]) {
  3.         final int num = 1;
  4.         Converter<Integer, String> s = (param) -> System.out.println(String.valueOf(param + num));//访问外层的局部变量num
  5.         s.convert(2);  // 输出结果为 3
  6.     }
  7.     public interface Converter<T1, T2> {
  8.         void convert(int i);
  9.     }
  10. }
复制代码
  1. int num = 1;  
  2. Converter<Integer, String> s = (param) -> System.out.println(String.valueOf(param + num));
  3. s.convert(2);
  4. num = 5;  
  5. //报错信息:Local variable num defined in an enclosing scope must be final or effectively final
复制代码


二、函数式接口

​                如果一个接口中,只声明了一个抽象方法,则此接口就称为函数式接口。在接口中加上@FunctionalInterface注解可以用于检验该接口是否为一个函数式接口。
  1. public class LambdaTest3 {
  2.     //消费型接口 Consumer<T>     void accept(T t)
  3.     @Test
  4.     public void test1() {
  5.         //未使用Lambda表达式
  6.         Learn("java", new Consumer<String>() {
  7.             @Override
  8.             public void accept(String s) {
  9.                 System.out.println("学习什么? " + s);
  10.             }
  11.         });
  12.         System.out.println("====================");
  13.         //使用Lambda表达
  14.         Learn("html", s -> System.out.println("学习什么? " + s));
  15.     }
  16.     private void Learn(String s, Consumer<String> stringConsumer) {
  17.         stringConsumer.accept(s);
  18.     }
  19.     //供给型接口 Supplier<T>     T get()
  20.     @Test
  21.     public void test2() {
  22.         //未使用Lambda表达式
  23.         Supplier<String> sp = new Supplier<String>() {
  24.             @Override
  25.             public String get() {
  26.                 return new String("我能提供东西");
  27.             }
  28.         };
  29.         System.out.println(sp.get());
  30.         System.out.println("====================");
  31.         //使用Lambda表达
  32.         Supplier<String> sp1 = () -> new String("我能通过lambda提供东西");
  33.         System.out.println(sp1.get());
  34.     }
  35.     //函数型接口 Function<T,R>   R apply(T t)
  36.     @Test
  37.     public void test3() {
  38.         //使用Lambda表达式
  39.         Employee employee = new Employee(1001, "Tom", 45, 10000);
  40.         Function<Employee, String> func1 =e->e.getName();
  41.         System.out.println(func1.apply(employee));
  42.         System.out.println("====================");
  43.         //使用方法引用
  44.         Function<Employee,String> func2 = Employee::getName;
  45.         System.out.println(func2.apply(employee));
  46.     }
  47.     //断定型接口 Predicate<T>    boolean test(T t)
  48.     @Test
  49.     public void test4() {
  50.         //使用匿名内部类
  51.         Function<Double, Long> func = new Function<Double, Long>() {
  52.             @Override
  53.             public Long apply(Double aDouble) {
  54.                 return Math.round(aDouble);
  55.             }
  56.         };
  57.         System.out.println(func.apply(10.5));
  58.         System.out.println("====================");
  59.         //使用Lambda表达式
  60.         Function<Double, Long> func1 = d -> Math.round(d);
  61.         System.out.println(func1.apply(12.3));
  62.         System.out.println("====================");
  63.         //使用方法引用
  64.         Function<Double,Long>func2 = Math::round;
  65.         System.out.println(func2.apply(12.6));
  66.     }
  67. }
复制代码


三、方法引用

现有一个Car类如下:
  1. @FunctionalInterface
  2. public interface Supplier<T> {
  3. T get();
  4. }
  5. class Car {
  6. //Supplier是jdk1.8的接口,这里和lamda一起使用了
  7. public static Car create(final Supplier<Car> supplier) {  //静态方法
  8.      return supplier.get();
  9. }
  10. public static void collide(final Car car) {  //静态方法
  11.      System.out.println("Collided " + car.toString());
  12. }
  13. public void follow(final Car another) {  //非静态方法
  14.      System.out.println("Following the " + another.toString());
  15. }
  16. public void repair() {  //非静态方法
  17.      System.out.println("Repaired " + this.toString());
  18. }
  19. }
复制代码


三、Stream API

<blockquote>
<ol start="2">一系列的中间操作:一个中间操作链,对数据源的数据进行处理。多个中间操作可以连接起来形成一个流水线,除非流水线上触发终止操作,否则中间操作不会执行任何的处理!而在终止操作时一次性全部处理,称为“惰性求值”。
2.1 筛选与切片
  1. public void test1(){
  2.     List<Employee> employees = EmployeeData.getEmployees();
  3.     Stream<Employee> employeeStream = employees.stream();
  4.     //filter(Predicate p)——接收 Lambda , 从流中排除某些元素。
  5.     employeeStream.filter(e -> e.getSalary() > 7000).forEach(System.out::println);//查询员工表中薪资大于7000的员工信息
  6.     System.out.println();
  7.     //limit(n)——截断流,使其元素不超过给定数量。
  8.     employees.stream().limit(3).forEach(System.out::println);//因为上一条代码中的Stream已经执行了终止操作,所以不能使用【employeeStream.limit(3).forEach(System.out::println)】,而是要重新创建一个Stream
  9.     System.out.println();
  10.     //skip(n) —— 跳过元素,返回一个扔掉了前 n 个元素的流。若流中元素不足 n 个,则返回一个空流。与 limit(n) 互补
  11.     employees.stream().skip(3).forEach(System.out::println);
  12.     System.out.println();
  13.     //distinct()——筛选,通过流所生成元素的 hashCode() 和 equals() 去除重复元素
  14.     employees.add(new Employee(1010,"刘庆东",56,8000));
  15.     employees.add(new Employee(1010,"刘庆东",56,8000));
  16.     employees.add(new Employee(1010,"刘庆东",56,8000));
  17.     employees.add(new Employee(1010,"刘庆东",56,8000));
  18.     employees.stream().distinct().forEach(System.out::println);
  19. }
复制代码
2.2 映射

[code]public void test2(){    List list = Arrays.asList("aa", "bb", "cc", "dd");    //map(Function f)——接收一个函数作为参数,将元素转换成其他形式或提取信息,该函数会被应用到每个元素上,并将其映射成一个新的元素。    list.stream().map(str -> str.toUpperCase()).forEach(System.out::println);    //练习1:获取员工姓名长度大于3的员工的姓名。    List employees = EmployeeData.getEmployees();    Stream nameStream = employees.stream().map(Employee::getName);    nameStream.filter(name -> name.length() >3).forEach(System.out::println);    System.out.println();    //练习2:使用map()中间操作实现flatMap()中间操作方法    Stream streamStream = list.stream().map(StreamAPITest2::fromStringToStream);    streamStream.forEach(s ->{        s.forEach(System.out::println);    });    System.out.println();    //flatMap(Function f)——接收一个函数作为参数,将流中的每个值都换成另一个流,然后把所有流连接成一个流。    Stream characterStream = list.stream().flatMap(StreamAPITest2::fromStringToStream);    characterStream.forEach(System.out::println);    //
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4