image.png
    方法引用:

    1. package com.atguigu.java3;
    2. import org.junit.Test;
    3. import java.io.PrintStream;
    4. import java.util.Comparator;
    5. import java.util.function.BiPredicate;
    6. import java.util.function.Consumer;
    7. import java.util.function.Function;
    8. /**
    9. * 方法的引用的使用
    10. * <p>
    11. * 1.使用情景:当要传递给Lambda体的操作,已经有实现的方法了,可以使用方法引用!
    12. * <p>
    13. * 2.方法引用,本质上就是Lambda表达式,而Lambda表达式作为函数式接口的实例。所以
    14. * 方法引用,也是函数式接口的实例。
    15. * <p>
    16. * 3.使用格式: 类(或对象) :: 方法名
    17. * <p>
    18. * 4.具体分为如下三种情况:
    19. * 情况一 对象 :: 非静态方法
    20. * 情况二 类 :: 静态方法
    21. * 情况三 类 :: 非静态方法
    22. * <p>
    23. * 5.方法引用使用的要求:要求接口中的抽象方法的形参列表和返回值类型与方法引用的方法的
    24. * 形参列表和返回值类型相同(针对于情况1 和 情况2)
    25. *
    26. * @author Dxkstart
    27. * @create 2021-06-09 11:29
    28. */
    29. public class MethodRefTest {
    30. //情况一:对象::实例方法
    31. //Consumer中的void accept(T t)
    32. //PrintStream中的void println(T t)
    33. @Test
    34. public void test1() {
    35. Consumer<String> con1 = str -> System.out.println(str);
    36. con1.accept("北京");
    37. System.out.println("******************************");
    38. PrintStream ps = System.out;
    39. Consumer<String> con2 = ps::println;
    40. con2.accept("beijing");
    41. }
    42. //Supplier中的T get()
    43. //Employee中的String getName()
    44. //情况二:类 :: 静态方法
    45. //Comparator中的int compare(T t1,T t2)
    46. //Integer中的int compare(T t1,T t2)
    47. @Test
    48. public void test3() {
    49. Comparator<Integer> com1 = (t1, t2) -> Integer.compare(t1, t2);
    50. System.out.println(com1.compare(12, 32));
    51. System.out.println("******************************");
    52. Comparator<Integer> com2 = Integer::compare;
    53. System.out.println(com2.compare(12, 3));
    54. }
    55. //Function中的R apply(T t)
    56. //Math中的Long round(Double d)
    57. @Test
    58. public void test4() {
    59. Function<Double, Long> func = new Function<Double, Long>() {
    60. @Override
    61. public Long apply(Double d) {
    62. return Math.round(d);
    63. }
    64. };
    65. System.out.println("******************************");
    66. Function<Double, Long> func1 = d -> Math.round(d);
    67. System.out.println(func1.apply(12.3));
    68. System.out.println("******************************");
    69. Function<Double, Long> func2 = Math::round;
    70. System.out.println(func1.apply(12.7));
    71. }
    72. //情况三:类 :: 实例方法 (有难度)
    73. //Comparator中的int compare(T t1,T t2)
    74. //String中的int t1.compareTo(t2)
    75. @Test
    76. public void test5() {
    77. Comparator<String> com1 = (s1, s2) -> s1.compareTo(s2);
    78. System.out.println(com1.compare("abc", "abd"));
    79. System.out.println("******************************");
    80. Comparator<String> com2 = String::compareTo;
    81. System.out.println(com2.compare("abc", "abm"));
    82. }
    83. //BiPredicate中的boolean test(T t1,T t2);
    84. //String中的boolean t1.equals(t2)
    85. @Test
    86. public void test6() {
    87. BiPredicate<String, String> pre1 = (s1, s2) -> s1.equals(s2);
    88. System.out.println(pre1.test("abc", "abc"));
    89. System.out.println("******************************");
    90. BiPredicate<String, String> pre2 = String::equals;
    91. System.out.println(pre1.test("abc", "abd"));
    92. }
    93. //Function中的R apply(T t)
    94. //Employee中的String getName();
    95. @Test
    96. public void test7() {
    97. }
    98. }

    构造器引用

    1. package com.atguigu.java3;
    2. import org.junit.Test;
    3. import java.util.Arrays;
    4. import java.util.function.Function;
    5. import java.util.function.Supplier;
    6. /**
    7. * 一、构造器引用
    8. * 和方法引用类似,函数式接口的抽象方法的形参列表和构造器的形参列表一致。
    9. * 抽象方法的返回值类型即为构造器所属的类的类型
    10. *
    11. *
    12. * 二、数组引用
    13. * 大家可以把数组看做是一个特殊的类,则写法与构造器引用一致。
    14. *
    15. *
    16. * @author Dxkstart
    17. * @create 2021-06-09 12:23
    18. */
    19. public class ConstructorTest {
    20. //构造器引用
    21. //Supplier中的T get()
    22. @Test
    23. public void test1(){
    24. Supplier<Employee> sup = new Supplier<Employee>() {
    25. @Override
    26. public Employee get() {
    27. return new Employee();
    28. }
    29. };
    30. System.out.println(sup.get());
    31. System.out.println("****************");
    32. Supplier<Employee> sup1 = () -> new Employee();
    33. System.out.println(sup1.get());
    34. System.out.println("****************");
    35. Supplier<Employee> sup2 = Employee::new;
    36. System.out.println(sup2.get());
    37. }
    38. //Function中的R apply(T t)
    39. @Test
    40. public void test2(){
    41. // Function<Integer,Employee> func1 = id -> new Employee(id);
    42. // Employee employee = func1.apply(1001);
    43. // System.out.println(employee);
    44. System.out.println("****************");
    45. // Function<Integer,Employee> func2 = Employee :: new;
    46. // Employee employee1 = func2.apply(1002);
    47. // System.out.println(employee1);
    48. }
    49. //两个参数的
    50. //BiFunction中的R apply(T t,U u)
    51. @Test
    52. public void test3(){
    53. // BiFunction<Integer,String,Employee> func1 = (id,name) -> new Employee(id,name);
    54. // System.out.println(func1.apply(1001,"Tom"));
    55. System.out.println("****************");
    56. // BiFunction<Integer,String,Employee> func2 = Employee :: new;
    57. // System.out.println(func2.apply(1002,"Jim"));
    58. }
    59. //数组引用
    60. //Function中的R apply(T t)
    61. @Test
    62. public void test4(){
    63. Function<Integer,String[]> func1 = length -> new String[length];
    64. String[] arr1 = func1.apply(5);
    65. System.out.println(Arrays.toString(arr1));
    66. System.out.println("****************");
    67. Function<Integer,String[]> func2 = String[] :: new;
    68. String[] arr2 = func1.apply(10);
    69. System.out.println(Arrays.toString(arr2));
    70. }
    71. }