gpt4 book ai didi

java - 带通配符的嵌套泛型

转载 作者:搜寻专家 更新时间:2023-11-01 01:58:52 25 4
gpt4 key购买 nike

为什么这样做:

List<?> list = new LinkedList<Integer>();

虽然这给出了类型不匹配错误:

List<List<?>> list = new LinkedList<List<Integer>>();

这是为什么?有没有办法在不使用原始类型的情况下解决这个问题?

最佳答案

尝试

List<? extends List<?>> list = new LinkedList<List<Integer>>();

注意:您应该知道,当您使用像 List 这样的集合时,您将只能以“只读”模式使用它(添加空值除外)。

关于java - 带通配符的嵌套泛型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1341093/

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