Java8新特性学习笔记

栏目: Java · 发布时间: 5年前

内容简介:共6种场景1接收一个参数,没有返回值;

lambda 表达式学习,抛开语法从匿名内部类学习语法特性:

共6种场景

1接收一个参数,没有返回值;

2接收两个参数,返回一个参数;

3无参数,无返回;

4构造方法引用;

5静态方法应用;

6实例(对象)方法引用。

一、接收一个参数,没有返回值

定义一个接口(有且只有一个抽象方法)

public interface MyInterface {
    void print(String str);
}

测试类

public class Test {
    public static void main(String[] args) {
        MyInterface m1 = new MyInterface() {
            @Override
            public void print(String str) {
                System.out.println(str);
            }
        };

        //常规写法
        MyInterface m2 = (String str) -> {
            System.out.println(str);
        };

        //简写
        <strong>MyInterface m3 = str -> System.out.println(str);</strong>

        m3.print("hello lambda..");
    }
}

二、接收两个参数,返回一个参数

定义一个接口

public interface MyInterface {
    int sum(int num1, int num2);
}

测试类

public class Test {
    public static void main(String[] args) {
        /**
         * 匿名内部类方式
         */
        MyInterface m1 = new MyInterface() {
            @Override
            public int sum(int num1, int num2) {
                return num1 + num2;
            }
        };

        /**
         * lambda常规写法
         */
        MyInterface m2 = (int num1, int num2) -> {
            return num1 + num2;
        };

        /**
         * lambda简写
         * 1 不写入参格式,可以自动推断
         * 2 如果方法中语句只有一条可以省略{};如果是return返回数据,可以省略return
         */
        <strong>MyInterface m3 = (num1, num2) -> num1 + num2;</strong>
        System.out.println(m3.sum(123, 456));
    }
}

三、无参数,无返回

定义一个接口

public interface MyInterface {
    void test();
}

测试类

public class Test {
    public static void main(String[] args) {
        MyInterface m1 = new MyInterface() {
            @Override
            public void test() {
                System.out.println(111);
            }
        };

        //lambda表达式常规
        MyInterface m2 = () -> System.out.println(111);

        //简写
        MyInterface m3 = () -> {
        };

        /**
         * 与匿名内部类一致,局部变量被final修饰
         * age前有隐藏的final
         */
        int age = 19;
        <strong>MyInterface m4 = () -> System.out.println(age);</strong>
        m4.test();
    }
}

四、构造方法引用

创建实体对象

public class Person {
    private String firstName;
    private String lastName;

    public Person(String firstName, String lastName) {
        super();
        this.firstName = firstName;
        this.lastName = lastName;
    }

    public String getFirstName() {
        return firstName;
    }

    public void setFirstName(String firstName) {
        this.firstName = firstName;
    }

    public String getLastName() {
        return lastName;
    }

    public void setLastName(String lastName) {
        this.lastName = lastName;
    }

    @Override
    public String toString() {
        return "Person{" +
                "firstName='" + firstName + '\'' +
                ", lastName='" + lastName + '\'' +
                '}';
    }
}

创建工厂

public interface PersonFactory {
    Person createPerson(String firstName, String lastName);
}

测试类

public class Test {
    public static void main(String[] args) {
        /*
        通过工厂获取Person对象
         */

        PersonFactory pf = new PersonFactory() {
            @Override
            public Person createPerson(String firstName, String lastName) {
                return new Person(firstName, lastName);
            }
        };

        //lambda常规写法
        PersonFactory pf1 = (firstName, lastName) -> new Person(firstName, lastName);

        /*
            lambda常规写法,构造方法引用;简单写法
            方法参数要一致
         */
        <strong>PersonFactory pf2 = Person::new;</strong>

        Person p = pf2.createPerson("learn", "java");
        System.out.println(p);
    }
}

五、静态方法应用

定义接口(字符串转数字)

public interface ParseInterface {
    int parse(String str);
}

测试类

public class Test {
    public static void main(String[] args) {
        ParseInterface p1 = new ParseInterface() {
            @Override
            public int parse(String str) {
                return Integer.parseInt(str);
            }
        };

        //lambda常规写法
        ParseInterface p2 = str -> Integer.parseInt(str);

        //静态方法引用简写(参数原封不动传给方法,类似构造方法引用)
        <strong>ParseInterface p3 = Integer::parseInt;</strong>

        System.out.println(p3.parse("123"));
    }
}

六、实例(对象)方法引用

需求:判断字符串后缀包含endWith

public class Test {
    public static void main(String[] args) {
        /*
        字符串endWith,是否存在
         */

        //被判断的字符串对象
        String str = "learn";
        Function<String, Boolean> fun1 = new Function<String, Boolean>() {
            @Override
            public Boolean apply(String suffix) {
                return str.endsWith(suffix);
            }
        };

        //lambda方法
        Function<String, Boolean> fun2 = suffix -> str.endsWith(suffix);

        //简写;实例(对象)方法引用
        <strong>Function<String, Boolean> fun3 = str::endsWith;</strong>

        System.out.println(fun3.apply("rn2"));
    }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Maven实战

Maven实战

许晓斌 / 机械工业出版社 / 2010年12月 / 65.00元

你是否早已厌倦了日复一日的手工构建工作?你是否对各个项目风格迥异的构建系统感到恐惧?Maven——这一Java社区事实标准的项目管理工具,能帮你从琐碎的手工劳动中解脱出来,帮你规范整个组织的构建系统。不仅如此,它还有依赖管理、自动生成项目站点等超酷的特性,已经有无数的开源项目使用它来构建项目并促进团队交流,每天都有数以万计的开发者在访问中央仓库以获取他们需要的依赖。 本书内容全面而系统,Ma......一起来看看 《Maven实战》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具