gpt4 book ai didi

Java 泛型 Eclipse 编译器错误?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:24:31 25 4
gpt4 key购买 nike

我的问题是另一个人的问题的跟进:Unbounded wildcard passed to method

他对编译以下代码的原因很感兴趣:

public class ColTest {
static<T> T wildSub(ArrayList<? extends T> holder, T arg){
T t=holder.get(0);
return t;
}

public static void main(String[] args) {
ArrayList<?> list=new ArrayList<Long>(Arrays.asList(2L,3L,7L));
Long lng=1L;
ColTest.wildSub(list, lng);
}
}

我们得出的结论是,诀窍在于编译器推断了 ?作为一个对象,并由于 Object->Long 的简单继承而使以下 Long 参数通过。

代码确实使用 Sun/Oracle javac(我使用 1.6.0_26-b03)编译,但没有在 Eclipse 中编译(我使用 Helios),它显示以下编译错误:

The method wildSub(ArrayList<? extends T>, T) in the type ColTest is not applicable for the arguments (ArrayList<capture#2-of ?>, Long)

我的问题是:

这是 Eclipse 使用的 Java 编译器实现中的错误,还是有效的 Java“泛型推理算法”规范中的某种歧义,只是 Eclipse 以不同的方式实现?

最佳答案

这似乎是一个 Eclipse 错误。

根据 15.12.2.7,T 应该被推断为对象。

15.12.2.8 也有一个包罗万象的子句:“然后将任何尚未推断出的剩余类型变量推断为 Object 类型”

对于 T=Object,根据 15.12.2.2,该方法适用

http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.12

关于Java 泛型 Eclipse 编译器错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7826671/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com