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 はこのように構築されておらず、達成可能ではありますが、コードの保守が難しく、場合によっては読みにくくなります。ただし、演習としては非常に役立ちます。また、部分的な関数がコード内で適切な位置にある場合もあります。