T
-函数的第一个参数的类型
U
-函数的第二个参数的类型
R
-函数的结果类型
@FunctionalInterface public interface BiFunction<T,U,R>
Function
两性专业化。
这是一个functional interface其功能的方法是apply(Object, Object)
。
Function
default <V> BiFunction<T,U,V> andThen(Function<? super R,? extends V> after)
after
函数的结果。如果两个函数的评价都抛出一个异常,则将它传递给所合成函数的调用方。
V
-
after
函数的输出类型,和组成的函数
after
-功能申请后应用此功能
after
功能
NullPointerException
如果是空的
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.