为什么Oracle Java编译器不能在这里推断出边界,但Eclipse可以?

时间:2015-12-01 17:00:32

标签: java eclipse generics compiler-errors

我有这个(貌似)无辜的代码(在这里简化为这个JUnit测试用例):

import static org.hamcrest.Matchers.instanceOf;
import static org.junit.Assert.assertThat;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.Callable;
import java.util.function.Supplier;

import org.junit.Test;

public class GenericsTest {
    private static boolean doFail;

    private static Map<String, Number> createMap() {
        if (doFail) {
            throw new IllegalArgumentException();
        }
        return new HashMap<>();
    }

    public static <T> T get(final Callable<T> _valueCreator, final Supplier<T> _errorValue) {
        try {
            return _valueCreator.call();
        } catch (final Exception e) {
            return _errorValue.get();
        }
    }

    public static Map<String, Number> getCachedMap() {
        return get(GenericsTest::createMap, Collections::emptyMap);
    }

    @Test
    public void testSuccess() {
        doFail = false;
        assertThat(getCachedMap(), instanceOf(HashMap.class));
    }

    @Test
    public void testFail() {
        doFail = true;
        assertThat(getCachedMap(), instanceOf(Collections.EMPTY_MAP.getClass()));
    }
}

问题在于return get(GenericsTest::createMap, Collections::emptyMap)行:Eclipse编译器在这里看不到问题(我也是如此),愉快地编译并运行测试并成功。

但是,当我在命令行上编译它时(在本例中为Maven 3,Oracle JDK8,但也不能直接使用javac),会抛出编译错误:

.../GenericsTest.java:[23,19] incompatible types: inferred type does not conform to upper bound(s)
inferred: java.util.Map<? extends java.lang.Object,? extends java.lang.Object>
upper bound(s): java.util.Map<java.lang.String,java.lang.Number>,java.lang.Object

我认为从返回类型(Map<String, Number>)以及createMap(同一)的签名都可以推断出所需的类型 - 事实上它似乎是Eclipse编译器似乎能够做到这一点。但是,JDK编译器只会推断出Map<Object, Object>,因此会失败。

这是JDK错误还是Eclipse编译器错误或其他什么?

2 个答案:

答案 0 :(得分:3)

这看起来像个错误。我会处理它,并且一旦我们获得有关为什么会发生这种情况的更多信息,可能会添加更好的答案。我已提交此错误条目JDK-8043926来跟踪它。

答案 1 :(得分:1)

确实是一个错误,相同的代码与JDK 1.8.0u66编译良好,但与之前的1.8.0u51没有编译。