接口 TriFunction<T,U,V,R>

函数接口:
这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

@FunctionalInterface public interface TriFunction<T,U,V,R>
TriFunction
  • 方法概要

    修饰符和类型
    方法
    说明
    default <W> org.apache.commons.lang3.function.TriFunction<T,U,V,W>
    andThen(Function<? super R,? extends W> after)
     
    apply(T var1, U var2, V var3)
     
  • 方法详细资料

    • apply

      R apply(T var1, U var2, V var3)
    • andThen

      default <W> org.apache.commons.lang3.function.TriFunction<T,U,V,W> andThen(Function<? super R,? extends W> after)