TriFunctionが必要な場合は、次のようにします。
@FunctionalInterface
interface TriFunction<A,B,C,R> {
R apply(A a, B b, C c);
default <V> TriFunction<A, B, C, V> andThen(
Function<? super R, ? extends V> after) {
Objects.requireNonNull(after);
return (A a, B b, C c) -> after.apply(apply(a, b, c));
}
}
次の小さなプログラムは、それをどのように使用できるかを示しています。結果の型は最後のジェネリック型パラメーターとして指定されることに注意してください。
public class Main {
public static void main(String[] args) {
BiFunction<Integer, Long, String> bi = (x,y) -> ""+x+","+y;
TriFunction<Boolean, Integer, Long, String> tri = (x,y,z) -> ""+x+","+y+","+z;
System.out.println(bi.apply(1, 2L)); //1,2
System.out.println(tri.apply(false, 1, 2L)); //false,1,2
tri = tri.andThen(s -> "["+s+"]");
System.out.println(tri.apply(true,2,3L)); //[true,2,3]
}
}
TriFunctionが実際に使用されていたか、定義されていたのでしょうjava.util.*
かjava.lang.*
。ただし、22個の引数を超えることは絶対にありません;-)つまり、コレクションをストリーミングできるようにするすべての新しいコードでは、メソッドのパラメーターとしてTriFunctionを必要としませんでした。したがって、含まれていませんでした。
更新
完全を期すため、別の回答(カレーに関連する)で破壊的な関数の説明に従って、追加のインターフェイスなしでTriFunctionをエミュレートする方法を次に示します。
Function<Integer, Function<Integer, UnaryOperator<Integer>>> tri1 = a -> b -> c -> a + b + c;
System.out.println(tri1.apply(1).apply(2).apply(3)); //prints 6
もちろん、他の方法で機能を組み合わせることが可能です。例えば:
BiFunction<Integer, Integer, UnaryOperator<Integer>> tri2 = (a, b) -> c -> a + b + c;
System.out.println(tri2.apply(1, 2).apply(3)); //prints 6
//partial function can be, of course, extracted this way
UnaryOperator partial = tri2.apply(1,2); //this is partial, eq to c -> 1 + 2 + c;
System.out.println(partial.apply(4)); //prints 7
System.out.println(partial.apply(5)); //prints 8
カリー化はラムダを超えた関数型プログラミングをサポートするすべての言語にとって自然なことですが、Javaはこの方法で構築されておらず、達成可能であるにもかかわらず、コードの保守や読み取りが困難です。ただし、これは演習として非常に役立ちます。また、部分的な関数は、コード内で正当な場所に置かれることがあります。