8

在 Java8 的 Function.class 中,我们有:

default <V> Function<V, R> compose(Function<? super V, ? extends T> before) {
    Objects.requireNonNull(before);
    return (V v) -> apply(before.apply(v));
}

撰写接受:

Function<? super V, ? extends T> before

而不是:

Function<V, ? extends T> before

是否有任何合理的情况表明“V”是下界这一事实很重要?

4

1 回答 1

5

? super允许返回的Function输入类型 ( V) 与参数输入类型不同。

例如,这与? super版本而不是替代版本一起编译。

Function<Object, String> before = Object::toString;
Function<String, Integer> after = Integer::parseInt;
Function<Integer, Integer> composed = after.compose(before);
于 2016-07-16T06:12:07.120 回答