将数据添加到列表 extends Number>
尝试向 List 添加元素时面临的困境源于通配符声明的约束。在这样的声明中,变量可以保存类型族中的任何值。这意味着以下赋值是有效的:
List<? extends Number> foo3 = new ArrayList<Number>(); List<? extends Number> foo3 = new ArrayList<Integer>(); List<? extends Number> foo3 = new ArrayList<Double>();
但是,此通配符声明禁止直接向列表添加元素,因为列表的具体类型未知。例如,不允许向 foo3 添加 Integer,因为它可能是 ArrayList
相反,通配符声明 List允许添加 Number 或其超类。相反,它将检索限制为 Number 类型或其子类。这种行为是为了确保添加到列表中的元素不会违反其完整性。
为了说明实际含义,以下对 Collections.copy() 的调用演示了通配符如何在相关列表之间灵活地复制数据。 types:
Collections.copy(new ArrayList<Number>(), new ArrayList<Number>()); Collections.copy(new ArrayList<Number>(), new ArrayList<Integer>()); Collections.copy(new ArrayList<Object>(), new ArrayList<Number>()); Collections.copy(new ArrayList<Object>(), new ArrayList<Double>());
总之,向 List 添加数据在从 List 读取时,由于基础列表类型的不确定性,这是不可能的超级数>仅限于 Number 类型及其子类。通配符提供了在相关类型列表之间复制数据的多功能性,如 Collections.copy() 所示。
以上是为什么我无法将数据添加到'列表”的详细内容。更多信息请关注PHP中文网其他相关文章!