java - ArrayList<Integer> 是否允许添加字符串?

标签 java generics arraylist collections

我遇到了下面的代码,一个向 List 添加元素的简单示例

    List list = new ArrayList<Integer>();
    ListIterator<Integer> litr = null;
    list.add("A");

    list.add("1");

    list.add(5);

    litr = list.listIterator();
    while(litr.hasNext()){
        System.out.println("UIterating " + litr.next());
    }

我原以为它会抛出一个 ClassCastException,但它却将其写入了控制台

A
1
5

这看起来很奇怪。当我尝试时:

 List<Integer> list = new ArrayList<Integer>();

我遇到编译时错误。

如果有人能解释如何将 String 对象添加到 ArrayList 中,我将不胜感激

最佳答案

您将新的 ArrayList 分配给了一个未类型化的列表。通用类型限制不适用于无类型列表,它可以让你在其中放入任何你想要的东西。编译器不会跟踪您的非类型化列表引用了用泛型类型声明的内容。

在任何情况下这都不会产生 ClassCastException,泛型只影响编译。在运行时

将类型放在列表变量上的情况:

List<Integer> list = new ArrayList<Integer>();

是首选,它应该生成一个编译器错误,告诉您您在集合中放入了错误的类型。

this article 中描述了遗留、非通用代码和通用代码如何互操作。 :

In proper generic code, Collection would always be accompanied by a type parameter. When a generic type like Collection is used without a type parameter, it's called a raw type.

Most people's first instinct is that Collection really means Collection<Object>. However, as we saw earlier, it isn't safe to pass a Collection<Part> in a place where a Collection<Object> is required. It's more accurate to say that the type Collection denotes a collection of some unknown type, just like Collection<?>.

But wait, that can't be right either! Consider the call to getParts(), which returns a Collection. This is then assigned to k, which is a Collection<Part>. If the result of the call is a Collection<?>, the assignment would be an error.

In reality, the assignment is legal, but it generates an unchecked warning. The warning is needed, because the fact is that the compiler can't guarantee its correctness. We have no way of checking the legacy code in getAssembly() to ensure that indeed the collection being returned is a collection of Parts. The type used in the code is Collection, and one could legally insert all kinds of objects into such a collection.

So, shouldn't this be an error? Theoretically speaking, yes; but practically speaking, if generic code is going to call legacy code, this has to be allowed. It's up to you, the programmer, to satisfy yourself that in this case, the assignment is safe because the contract of getAssembly() says it returns a collection of Parts, even though the type signature doesn't show this.

关于java - ArrayList<Integer> 是否允许添加字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30304986/

相关文章:

java - JSONObject 不显示在 ListView 上

c++ - 使用混合(?)使流输入/输出更容易

java - 如何替换 arraylist 中包含元素为 stringbuilder 类型的字符串的元素

java - 我如何使用 axis 2 Web 服务和客户端调试此问题

java - 问题更新到 Glassfish 4.1

c# - 了解 C# 泛型和 Nullable 值类型。返回 null 或 nullable

java - 使用通过反射获得的枚举常量

java - 如何从 Java ArrayList 中删除顺序元素?

java - 如何从数组列表中提取特定对象?

java - 在 dll 中使用函数,在 java 中