如何将 ArrayList 传递给以集合作为输入的方法

发布于 2024-08-31 07:50:36 字数 327 浏览 9 评论 0原文

我想将一些 ArrayList X 传递到方法 a(CollectionsomeCol) 中,该方法将 Collection 作为输入。

我该怎么做?我认为 ArrayList 是一个 Collection,因此我应该能够“只是这样做”,但看起来 Collection 是一个接口,而 ArrayList 实现了这个接口。我能做些什么来让这项工作成功吗……如果你理解这个理论,这也将帮助我和可能的许多其他人。

谢谢

I want to pass some ArrayList<Integer> X into method a(Collection<Integer> someCol) that takes Collection<Integer> as an input.

How can I do this? I thought an ArrayList was a Collection and thus I should be able to "just do it" but it seems that Collection is an interface and ArrayList implements this interface. Is there something I can do to make this work ... if you understand the theory that would also help me and possibly lots of other people.

Thanks

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

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

发布评论

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

评论(2

伤感在游骋 2024-09-07 07:50:36

去做就对了。

认真地说,一个类将隐式转换为它所实现的接口。

编辑
如果您需要示例:

import java.util.*;

public class Sandbox {
    public static void main(String[] args) {
        final ArrayList<Integer> list = new ArrayList<Integer>(5);
        Collections.addAll(list, 1, 2, 3, 4, 5);
        printAll(list);
    }

    private static void printAll(Collection<Integer> collection) {
        for (Integer num : collection)
            System.out.println(num);
    }
}

Just do it.

Seriously, a class will implicitly cast to an interface for which it implements.

Edit
In case you needed an example:

import java.util.*;

public class Sandbox {
    public static void main(String[] args) {
        final ArrayList<Integer> list = new ArrayList<Integer>(5);
        Collections.addAll(list, 1, 2, 3, 4, 5);
        printAll(list);
    }

    private static void printAll(Collection<Integer> collection) {
        for (Integer num : collection)
            System.out.println(num);
    }
}
单身情人 2024-09-07 07:50:36

类 ArrayList;实现 List接口列表;扩展 Collection,因此 ArrayList 是一个 Collection

这就是所谓的“子类型化”。

但请注意,即使 Integer extends NumberList 不是 List。然而,它是一个 List。也就是说,Java中的泛型是不变的;它不是协变的。

另一方面,数组是协变的。 Integer[] 是一个Number[]

参考文献

相关问题

class ArrayList<E> implements List<E> and interface List<E> extends Collection<E>, so an ArrayList<Integer> is-a Collection<Integer>.

This is what is called "subtyping".

Note, however, that even though Integer extends Number, a List<Integer> is-not-a List<Number>. It is, however, a List<? extends Number>. That is, generics in Java is invariant; it's not covariant.

Arrays on the other hand, are covariant. An Integer[] is-a Number[].

References

Related questions

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