function
指在java8 添加的java.util.function.* 的函数式接口,为啥要加这种,一个因为lambda,一个是因为stream 处理。
具体使用
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对象 |
上面是基本的,还有各种特定返回的BiConsumer,LongConsumer,LongFunction 东西很多的。具体使用吧。
代码
注意一点,不同的类型不能混用,比如function只能和function,不能给consumer当入参,但是可以用相同的泛型返回结果当入参。
- andThen: 从前面开始往后执行。一直到最后一个,
- compose: 先执行后面的。到前面。
-
function: 日常主要还是使用它,输入输出。
// 用法都差不多,根据泛型入参,出参,
Function<Integer,Integer> functionInt=integer -> integer+2;
int result=functionInt.apply(3);
Function<Integer,String> funIntToString=e -> e+"--";
//andThen 是先执行第一个,后面在执行andThen里面的。
String result1=functionInt.andThen(funIntToString).apply(4);
//compose 是先执行里面的, 后面在执行前面的
String result2= funIntToString.compose(functionInt).apply(4);
//函数编程可以当入参
String result3=funIntToString.compose(functionInt).compose(functionInt).apply(4);
String result5 = functionInt.andThen(functionInt).andThen(funIntToString).apply(4);
System.out.println(result + "||" +result1+"||"+result2+"||"+result3);
```
- Consumer:只消费无返回。
Consumer
System.out.println(s);
};
consumer.accept(funIntToString.compose(functionInt).compose(functionInt).apply(4));
consumer.andThen(consumerS1).accept(“1111”);
“`
发表回复