加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

java 8选项列表收集列表编译错误

发布时间:2020-12-15 04:40:44 所属栏目:Java 来源:网络整理
导读:我无法理解之间的区别 StreamOptionalInteger optionalStream = Stream.of( Optional.of(1),Optional.empty(),Optional.of(5));ListOptionalInteger optionalList = optionalStream.collect(Collectors.toList()); 哪个工作得很好,并且: ListOptionalIntege
我无法理解之间的区别

Stream<Optional<Integer>> optionalStream = Stream.of(
                Optional.of(1),Optional.empty(),Optional.of(5));

List<Optional<Integer>> optionalList = optionalStream.collect(Collectors.toList());

哪个工作得很好,并且:

List<Optional<Integer>> optionalList1 = Stream.of(
                Optional.of(1),Optional.of(5)).collect(Collectors.toList());

我收到错误的地方

Error:(138,40) java: incompatible types: inference variable T has incompatible bounds
    equality constraints: java.util.Optional<java.lang.Integer>
    lower bounds: java.util.Optional<? extends java.lang.Object>

解决方法

我已经减少了一些示例,并尝试使用-XDverboseResolution = all编译以输出有关类型推断的信息:

final class One {
  void one() {
    Stream<Optional<Integer>> optionalStream = Stream.of(Optional.empty());
    List<Optional<Integer>> optionalList = optionalStream.collect(Collectors.toList());
  }
}

final class Two {
  void two() {
    List<Optional<Integer>> optionalList1 =
        Stream.of(Optional.empty()).collect(Collectors.toList());
  }
}

在Two的情况下,看起来像Stream.of的延迟实例化甚至在查看后续的collect之前完成:

...
Two.java:9: Note: Deferred instantiation of method <T>of(T)
        Stream.of(Optional.empty()).collect(Collectors.toList());
                 ^
  instantiated signature: (Optional<Object>)Stream<Optional<Object>>
  target-type: <none>
  where T is a type-variable:
    T extends Object declared in method <T>of(T)
Two.java:9: Note: resolving method collect in type Stream to candidate 0
        Stream.of(Optional.empty()).collect(Collectors.toList());
...

(“解决方法收集是第一次提到收集)

没有目标类型来约束它;实例化的签名显示它是Stream< Optional< Object>>.

如果你看一个相应的输出:

...
One.java:8: Note: Deferred instantiation of method <T>of(T)
    Stream<Optional<Integer>> optionalStream = Stream.of(Optional.empty());
                                                        ^
  instantiated signature: (Optional<Integer>)Stream<Optional<Integer>>
  target-type: Stream<Optional<Integer>>
  where T is a type-variable:
    T extends Object declared in method <T>of(T)
...

它是正确的,因为它知道目标类型.

我不能确切地说为什么延迟实例化在此时为2发生,因为我对应用类型推断的方式不太熟悉.

我认为这是因为Stream.of的调用不被认为是poly表达式,但我无法真正说服自己为什么(请参阅编辑历史记录中的一些不连贯的ramblings).

我建议的修复是将类型提示应用于Optional.empty(),即Optional.< Integer> empty().这具有在推理中更早获取Optional项的实际类型的效果,因此在延迟实例化时已知事件,尽管目标类型仍然是未知的:

final class Three {
  void three() {
    List<Optional<Integer>> optionalList1 =
        Stream.of(Optional.<Integer>empty()).collect(Collectors.toList());
  }
}

...
Three.java:9: Note: resolving method of in type Stream to candidate 1
        Stream.of(Optional.<Integer>empty()).collect(Collectors.toList());
              ^
  phase: BASIC
  with actuals: Optional<Integer>
  with type-args: no arguments
  candidates:
      #0 not applicable method found: <T#1>of(T#1...)
        (cannot infer type-variable(s) T#1
          (argument mismatch; Optional<Integer> cannot be converted to T#1[]))
      #1 applicable method found: <T#2>of(T#2)
        (partially instantiated to: (Optional<Integer>)Stream<Optional<Integer>>)
  where T#1,T#2 are type-variables:
    T#1 extends Object declared in method <T#1>of(T#1...)
    T#2 extends Object declared in method <T#2>of(T#2)
Three.java:9: Note: Deferred instantiation of method <T>of(T)
        Stream.of(Optional.<Integer>empty()).collect(Collectors.toList());
                 ^
  instantiated signature: (Optional<Integer>)Stream<Optional<Integer>>
  target-type: <none>
  where T is a type-variable:
    T extends Object declared in method <T>of(T)
...

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读