标签:写法 cep 大小 比较大小 结果 抽象方法 obj 使用 int
如果不熟悉Java8新特性的小伙伴,初次看到函数式接口写出的代码可能会是一种懵逼的状态,我是谁,我在哪,我可能学了假的Java,(???(???(???*),但是语言都是在进步的,就好比面向对象的语言Java也可以写出优雅的函数式调用,学习的过程并不复杂,当你学会了Java8中函数式编程的新特性,你一定会对他爱不释手的。下面介绍一下基于Lambda表达式简写的两种引用。避免再次看到这种代码时的尴尬??。
方法引用,一般包含下面三种写法,传统的写法我们可能都是通过对象.
去调用实例方法或使用类.
调用静态方法,但是学完方法引用后,就可以可以使用这三种方式去调用方法,但是要符合一定的规则。
对象::实例方法
/**
* 对象调用实例方法
*/
public static void objMethod(){
List<Integer> list = new ArrayList<> ();
list.add(1);
list.add(2);
list.add(3);
list.forEach((i)->{
PrintStream out = System.out;
Consumer<Integer> consumer = out::println;
consumer.accept(i);
});
list.forEach(System.out::println);
}
最常用的System.out.println
类::实例方法
/**
* 判断两个字符串是否相同
*
* @param str1
* @param str2
* @return
*/
public static boolean isEqual(String str1, String str2) {
BiPredicate<String,String> b = (s1,s2)->s1.equals(str2); ①
BiPredicate<String, String> bp = String::equals;
return bp.test(str1, str2);
}
类::静态方法
/**
* 比较大小
* @param x
* @param y
* @return
*/
public static boolean compareValue(int x, int y){
Comparator<Integer> compare = Integer::compare; ②
return compare.compare(x, y) > 0;
}
其实不管是哪一种调用方式都是有规律可循的,这里总结一下在使用Lambda表达式的过程中符合什么样的规则才可以使用方法引用的模式去写。
简称花式new对象,一个简单的new对象也要写的高端、大气、上档次??,既可以掌握新知识,又可以ZB,赶紧学习吧。
ClassName::new
资源类:
public class Apple {
private String color;
private double weight;
public Apple(){
}
public Apple(String color) {
this.color = color;
}
public Apple(double weight) {
this.weight = weight;
}
public Apple(String color, double weight) {
this.color = color;
this.weight = weight;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public double getWeight() {
return weight;
}
public void setWeight(double weight) {
this.weight = weight;
}
@Override
public String toString() {
return "Apple{" +
"color=‘" + color + ‘\‘‘ +
", weight=" + weight +
‘}‘;
}
}
测试代码:
public static void main(String[] args) {
//无参构造
//Supplier<Apple> supplier = () -> new Apple(); Lambda表达式写法
Supplier<Apple> supplier = Apple::new;
Apple apple = supplier.get();
System.out.println("NoArgsConstructor: "+apple);
//有参构造
//Function<Double,Apple> function = (x) -> new Apple(x); Lambda表达式写法
// 构造引用
Function<Double,Apple> function = Apple::new;
Apple apply = function.apply(1.0);
System.out.println("OneArgsConstructor: "+apply);
BiFunction<String,Double,Apple> bf = Apple::new;
Apple bi = bf.apply("Red", 2.0);
System.out.println("TwoArgsConstructor: "+bi);
}
输出结果:
NoArgsConstructor: Apple{color=‘null‘, weight=0.0}
OneArgsConstructor: Apple{color=‘null‘, weight=1.0}
TwoArgsConstructor: Apple{color=‘Red‘, weight=2.0}
当构造方法无参时使用Supplier,有一个参数时使用Function,两个参数时使用BiFunction。这里很容易得出一个规律,当使用构造方法引用时,函数式接口的参数列表需要和构造方法的参数列表保持一致。
标签:写法 cep 大小 比较大小 结果 抽象方法 obj 使用 int
原文地址:https://www.cnblogs.com/chsoul/p/13622489.html