Java 泛型:在 arraylist(无界通配符类型)上,add 和 addAll 方法的行为不同

发布于 2024-12-12 05:17:29 字数 286 浏览 0 评论 0原文

直接看一个例子:

    ArrayList <?> x = new ArrayList();
    ArrayList y = new ArrayList();
    x.add("abc"); // Clause 1. Compilation error - No problemo. Understood.
    x.addAll(y); // Clause 2. No compilation error

对于无界通配符,不能添加。为什么最后一条语句没有编译错误?

To be direct here's an example:

    ArrayList <?> x = new ArrayList();
    ArrayList y = new ArrayList();
    x.add("abc"); // Clause 1. Compilation error - No problemo. Understood.
    x.addAll(y); // Clause 2. No compilation error

For unbounded wildcard, one cannot add. Why there is no compilation error on the last statement?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假面具 2024-12-19 05:17:29

因为您正在使用原始类型调用该方法。编译器无法执行类型检查。如果您创建y用户泛型,addAll(..)将会失败。

Because you are invoking the method with a raw type. The compiler can't perform type checks. If you make y user generics, addAll(..) will fail.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文