中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java8中的方法引用與構造器引用

發布時間:2020-06-20 21:34:12 來源:網絡 閱讀:465 作者:孤魂1996 欄目:編程語言

java8中的方法引用與構造器引用

方法引用:若Lambda體中的內容有方法已經實現了,我們可以使用“方法引用”

主要的三種語法格式:

  1. 對象::實例名
  2. 類::靜態方法名
  3. 類::實例方法名

注意:

  1. Lmabda體中調用方法的參數列表與返回值類型要與函數式接口中抽象方法的函數列表和返回值類型保持一致
  2. 若Lambda參數列表中的第一參數是 實例方法的調用者,而第二個參數是 實例方法的參數時,可以使用ClassName::method

    public class Employee {
    
    private String name;
    private int age;
    private double salary;
    
    public Employee() {
        super();
    }
    
    public  Employee(int age){
        this.age = age;
    }
    
    public Employee(String name, int age, double salary) {
        super();
        this.name = name;
        this.age = age;
        this.salary = salary;
    }
    
    public String getName() {
        return name;
    }
    
    public void setName(String name) {
        this.name = name;
    }
    
    public int getAge() {
        return age;
    }
    
    public void setAge(int age) {
        this.age = age;
    }
    
    public double getSalary() {
        return salary;
    }
    
    public void setSalary(double salary) {
        this.salary = salary;
    }
    
    @Override
    public String toString() {
        return "Employee{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", salary=" + salary +
                '}';
    }
    }
    //對象::實例方法名
    @Test
    public void test1(){
        PrintStream ps1 = System.out;
        Consumer<String> con = (x) -> ps1.println(x);
    
        PrintStream ps = System.out;
        Consumer<String> con1 = ps::println;
    
        Consumer<String> con2 = System.out::println;
        con2.accept("abcdef");
    }
    
    @Test
    public void test2(){
        Employee employee = new Employee();
        Supplier<String> sup = () -> employee.getName();
        String str = sup.get();
        System.out.println(str);
    
        Supplier<String> sup2 = employee::getName;
        String str2 = sup2.get();
        System.out.println(str2);
    
    }
    //類:靜態方法名
    @Test
    public void test3(){
        Comparator<Integer> com = (x, y) -> Integer.compare(x, y);
    
        Comparator<Integer> com1 = Integer::compare;
    }
    構造器引用

    格式:ClassName::new
    注意:需要調用的構造器的參數列表要與函數式接口中抽象方法的參數列表保持一致

    public class Employee {
    
    private String name;
    private int age;
    private double salary;
    
    public Employee() {
        super();
    }
    
    public  Employee(int age){
        this.age = age;
    }
    
    public Employee(String name, int age, double salary) {
        super();
        this.name = name;
        this.age = age;
        this.salary = salary;
    }
    
    public String getName() {
        return name;
    }
    
    public void setName(String name) {
        this.name = name;
    }
    
    public int getAge() {
        return age;
    }
    
    public void setAge(int age) {
        this.age = age;
    }
    
    public double getSalary() {
        return salary;
    }
    
    public void setSalary(double salary) {
        this.salary = salary;
    }
    
    @Override
    public String toString() {
        return "Employee{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", salary=" + salary +
                '}';
    }
    }
    //構造器引用
    @Test
    public void test5(){
        Supplier<Employee> sup = () -> new Employee();
    
        //構造器引用方式
        Supplier<Employee> sup2 = Employee::new;
        Employee employee = sup2.get();
        System.out.println(employee);
    }
    
    @Test
    public void test6(){
        Function<Integer, Employee> fun = (x) -> new Employee(x);
    
        Function<Integer, Employee> fun2 = Employee::new;
        Employee emp = fun2.apply(101);
        System.out.println(emp);
    
    }
    數組引用

    格式:Type[ ]::new;

    //數組引用
    @Test
    public void test7(){
        Function<Integer, String[]> fun = (x) -> new String[x];
        String[] strs = fun.apply(10);
        System.out.println(strs.length);
    
        Function<Integer, String[]> fun2 = String[]::new;
        String[] strs2 = fun2.apply(20);
        System.out.println(strs2.length);
    }
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

梓潼县| 长宁区| 专栏| 洪湖市| 淄博市| 洪泽县| 嘉义县| 大悟县| 平塘县| 昌邑市| 正蓝旗| 牡丹江市| 准格尔旗| 绥宁县| 惠东县| 日照市| 衡阳县| 六安市| 霞浦县| 朝阳市| 宁河县| 德江县| 夏邑县| 永嘉县| 陵川县| 深圳市| 林口县| 宜宾县| 如皋市| 龙山县| 金秀| 西峡县| 聂荣县| 烟台市| 绿春县| 金川县| 安泽县| 娄底市| 科尔| 军事| 迭部县|