2

我有一个不受我控制的 Java 类,定义为:

public @interface ValueSource {
    String[] strings() default {}
}

我正在尝试从我控制的 Kotlin 文件中使用此类,如下所示:

class Thing {
    @ValueSource(string = ["non-null", null])
    fun performAction(value: String?) {
        // Do stuff
    }
}

我收到编译器错误

Kotlin: Type inference failed. Expected type mismatch: inferred type is Array<String?> but Array<String> was expected.

我明白为什么推断的类型是Array<String?>,但为什么预期的类型不一样?为什么 Kotlin 将 Java 泛型解释为String!而不是String??最后,有没有办法抑制错误?

科特林 1.2.61

4

1 回答 1

4

这不是 Kotlin 问题 - 此代码也无效,因为 Java 根本不允许null注释参数中的值:

public class Thing {

    @ValueSource(strings = {"non-null", null}) // Error: Attribute value must be constant
    void performAction(String value) {
        // Do stuff
    }

}

有关此问题的更多讨论,请参阅本文此问题。

于 2018-08-27T18:33:52.140 回答