实参 ... 无法通过方法调用转换转换为 ...

actual argument ... cannot be converted to ... by method invocation conversion

我正在为 Minecraft 游戏制作 mod。 使用 Eclipse 一切正常,编译成功,我可以使用我创建的 mod 玩游戏。 但是,当我使用 gradle 编译我的代码时,出现此错误:

C:\Users\Alexandre\MCForge\ForgeCreeperHeal\debug\build\sources\main\java\fr\eyzox\dependencygraph\DependencyGraph.java:31: error: method buildIndex in class DataKeyProvider<K> cannot be applied to given types;
                        node.keyProvider.buildIndex(index, node);
                                        ^
  required: Map<KEY,DependencyGraph<KEY,? extends IData<KEY>>.Node>,DependencyGraph<KEY,? extends IData<KEY>>.Node
  found: Map<KEY,DependencyGraph<KEY,DATA>.Node>,DependencyGraph<KEY,DATA>.Node
  reason: actual argument Map<KEY,DependencyGraph<KEY,DATA>.Node> cannot be converted to Map<KEY,DependencyGraph<KEY,? extends IData<KEY>>.Node> by method invocation conversion
  where KEY,DATA,K are type-variables:
    KEY extends Object declared in class DependencyGraph
    DATA extends IData<KEY> declared in class DependencyGraph
    K extends Object declared in class DataKeyProvider

我不明白为什么它可以在 Eclipse 上运行,但不能用于 gradle。 也许这是 pur java 的泛型误解,但我对此表示怀疑,因为在 Eclipse 中一切正常。 是我这边的错误还是我应该寻找 gradle 插件错误? 我是 gradle.

的初学者

可能需要源代码和 build.gradle 才能理解我的问题。 我在这里创建了一个回购协议:https://github.com/RedRelay/FCH_DEBUG

编辑:这似乎是与 Eclipse 相关的问题。我刚刚了解到 Eclipse 有自己的编译器,它似乎允许这个而不是标准 javac.

Eclipse 有自己的编译器,允许它代替标准的 javac 编译器。我变了

protected abstract void buildIndex(final Map<K, DependencyGraph<K, ? extends IData<K>>.Node> index, final DependencyGraph<K, ? extends IData<K>>.Node theNode) throws DuplicateKeyException; protected abstract <D extends IData<K>> void buildIndex(final Map<K, DependencyGraph<K, D>.Node> index, final DependencyGraph<K, D>.Node theNode) throws DuplicateKeyException; 现在可以使用了。