Java 未选中:未选中 varargs 参数的通用数组创建

2024-01-06

我已将 Netbeans 设置为在 Java 代码中显示未经检查的警告,但我无法理解以下行中的错误:

private List<String> cocNumbers;
private List<String> vatNumbers;
private List<String> ibans;
private List<String> banks;
...
List<List<String>> combinations = Utils.createCombinations(cocNumbers, vatNumbers, ibans);

Gives:

[unchecked] unchecked generic array creation for varargs parameter of type List<String>[]

方法来源:

/**
 * Returns a list of all possible combinations of the entered array of lists.
 *
 * Example: [["A", "B"], ["0", "1", "2"]]
 * Returns: [["A", "0"], ["A", "1"], ["A", "2"], ["B", "0"], ["B", "1"], ["B", "2"]]
 *
 * @param <T> The type parameter
 * @param elements An array of lists
 * @return All possible combinations of the entered lists
 */
public static <T> List<List<T>> createCombinations(List<T>... elements) {
    List<List<T>> returnLists = new ArrayList<>();

    int[] indices = new int[elements.length];
    for (int i = 0; i < indices.length; i++) {
        indices[i] = 0;
    }

    returnLists.add(generateCombination(indices, elements));
    while (returnLists.size() < countCombinations(elements)) {
        gotoNextIndex(indices, elements);
        returnLists.add(generateCombination(indices, elements));
    }

    return returnLists;
}

到底出了什么问题,我该如何修复它,因为我认为在代码中留下未经检查的警告不是一个好主意?

忘了说了,我正在使用 Java 7。

Edit:我现在还看到该方法具有以下内容:

[unchecked] Possible heap pollution from parameterized vararg type List<T>
  where T is a type-variable:
    T extends Object declared in method <T>createCombinations(List<T>...)

正如 janoh.janoh 上面提到的,Java 中的 varargs 只是数组的语法糖加上在调用站点隐式创建数组。所以

List<List<String>> combinations =
    Utils.createCombinations(cocNumbers, vatNumbers, ibans);

实际上是

List<List<String>> combinations =
    Utils.createCombinations(new List<String>[]{cocNumbers, vatNumbers, ibans});

但正如你可能知道的,new List<String>[]在Java中是不允许的,原因已经在许多其他问题中提到过,但主要与数组在运行时知道其组件类型这一事实有关,并在运行时检查添加的元素是否与其组件类型匹配,但这种检查是对于参数化类型来说是不可能的。

无论如何,编译器仍然创建数组,而不是失败。它做了类似的事情:

List<List<String>> combinations =
    Utils.createCombinations((List<String>[])new List<?>[]{cocNumbers, vatNumbers, ibans});

这可能不安全,但不一定不安全。大多数可变参数方法只是迭代可变参数元素并读取它们。在这种情况下,它不关心数组的运行时类型。你的方法就是这种情况。由于您使用的是 Java 7,因此您应该添加@SafeVarargs对您的方法进行注释,您将不会再收到此警告。这个注释基本上是说,这个方法只关心元素的类型,而不关心数组的类型。

但是,有一些可变参数方法确实使用数组的运行时类型。在这种情况下,它可能是不安全的。这就是警告出现的原因。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Java 未选中:未选中 varargs 参数的通用数组创建 的相关文章

随机推荐