Python 官方文档:入门教程 => 点击学习
目录jdk8新特性-java.util.function-Function接口Function常用方法&&实践apply基本应用总结JDK8新特性-java.util
14年,oracle公司如期发布了Java 8正式版。现如今4年过去了,终于鼓起勇气认真对待它,就好似虽然认识了好几年的伙伴,突然感觉要成为情侣的感觉……
JDK 1.8 api包含了很多内建的函数式接口,在老Java中常用到的比如Comparator或者Runnable接口,这些接口都增加了@FunctionalInterface注解以便能用在lambda上。
现如今,我们则从Function常用函数入口,真正了解一下。
name | type | description |
---|---|---|
Consumer | Consumer< T > | 接收T对象,不返回值 |
Predicate | Predicate< T > | 接收T对象并返回boolean |
Function | Function< T, R > | 接收T对象,返回R对象 |
Supplier | Supplier< T > | 提供T对象(例如工厂),不接收值 |
UnaryOperator | UnaryOperator | 接收T对象,返回T对象 |
BinaryOperator | BinaryOperator | 接收两个T对象,返回T对象 |
标注为FunctionalInterface的接口被称为函数式接口,该接口只能有一个自定义方法,但是可以包括从object类继承而来的方法。
如果一个接口只有一个方法,则编译器会认为这就是一个函数式接口。
是否是一个函数式接口,需要注意的有以下几点:
//将Function对象应用到输入的参数上,然后返回计算结果。
R apply(T t);
//返回一个先执行当前函数对象apply方法再执行after函数对象apply方法的函数对象。
default <V> Function<T, V> andThen(Function<? super R, ? extends V> after) {
Objects.requireNonNull(after);
return (T t) -> after.apply(apply(t));
}
//返回一个先执行before函数对象apply方法再执行当前函数对象apply方法的函数对象
default <V> Function<V, R> compose(Function<? super V, ? extends T> before) {
Objects.requireNonNull(before);
return (V v) -> apply(before.apply(v));
}
compose 和 andThen 的不同之处是函数执行的顺序不同。
compose 函数先执行参数,然后执行调用者,而 andThen 先执行调用者,然后再执行参数。
public static void main(String[] args) {
Function<Integer, Integer> name = e -> e * 2;
Function<Integer, Integer> square = e -> e * e;
int value = name.andThen(square).apply(3);
System.out.println("andThen value=" + value);
int value2 = name.compose(square).apply(3);
System.out.println("compose value2=" + value2);
//返回一个执行了apply()方法之后只会返回输入参数的函数对象
Object identity = Function.identity().apply("huohuo");
System.out.println(identity);
}
直接看结果:
andThen value=36
compose value2=18
huohuo
字符串长度记录返回
public class MyFunction implements Function<String,Integer>{
@Override
public Integer apply(String s) {
return s.length();
}
}
返回两个字符串的连接,BiFunction与Function的不同就是传入两个参数,依旧返回一个值。
public class MyBiFunction implements BiFunction<String, String, String> {
@Override
public String apply(String s, String s2) {
return s+";"+s2;
}
}
最后调用结果:
private static String hello = "Nice to meet you";
private static String name = "my name is huohuo";
public static void main(String[] args) {
MyFunction myFunction = new MyFunction();
MyBiFunction biFunction = new MyBiFunction();
int num = myFunction.apply(hello);
String valueBi = biFunction.apply(hello, name);
//hello长度返回
System.out.println(num);
//语句整合返回
System.out.println(valueBi);
}
返回值:
16
Nice to meet you;my name is huohuo
其实使用的过程感觉这些都无所必要,但是对于新特性以及代码规范而言,即使是简易代码,也有了一个整合的过程。
Function简单实践仅此为止,下篇文章讲述Predicate的使用。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: JDK8新特性-java.util.function-Function接口使用
本文链接: https://lsjlt.com/news/202890.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0