パラメータとしてs または型の@FunctionalInterface
両方を受け入れる Java でを作成したいと考えています。私はこれをやろうとしましたが、共通のインターフェースを共有していないため、達成することは不可能のようです. また、を呼び出す一般的なラッパー クラスを使用してみましたが、実行時に型パラメーターが必要なため、これは不可能のようです。Stream
Optional
@FunctionalInterface
最小の例:
@FunctionalInterface
public interface AcceptingInterface<S, T> {
T accept(S s);
}
public class Test<S, T> {
private final AcceptingInterface<S, T> funcInterface;
private final Class<S> source;
private final Class<T> target;
public Test(AcceptingInterface<S, T> a, Class<S> s, Class<T> t) {
this.funcInterface = a;
this.source = s;
this.target = t;
}
public T invoke(S s) {
return s == null ? null : this.funcInterface.accept(s);
}
public Class<S> getSource() {
return source;
}
public Class<T> getTarget() {
return target;
}
}
私のアプローチが間違っているのかもしれません...フィードバックやこの問題の解決策をお待ちしております。