我想在Java中创建一个@FunctionalInterface
,它接受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;
}
}
也许我的方法是错的......我很乐意收到反馈和/或解决这个问题。
答案 0 :(得分:4)
我假设您要将Optional作为0-1元素的流处理,在这种情况下,您可以添加一个从Optional转换为Stream的默认方法,因此:
@FunctionalInterface
public interface AcceptingInterface<V, T> {
T accept(Stream<? extends V> s);
default T accept(Optional<? extends V> opt){
return accept(opt.map(Stream::of).orElseGet(Stream::empty));
}
}
Java 9应该添加Optional.stream()
方法。