将集合相互添加

发布于 2024-10-21 08:00:10 字数 223 浏览 1 评论 0原文

我正在审查一个类,这是一个老问题:

我需要编写一个方法

void addAll(Collection c1, Collection c2);

,将 c2 中的所有元素添加到 c1 中。

我可以用 addAll 做点什么吗?我不熟悉它,但似乎我可以写:

c1.addAll(c2);

I'm reviewing for a class, and this is an old question:

I need to write a method

void addAll(Collection c1, Collection c2);

that adds all the elements in c2 to c1.

Could I just do something with addAll? I'm not familiar with it, but it seems like I could write:

c1.addAll(c2);

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

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

发布评论

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

评论(2

何止钟意 2024-10-28 08:00:10

是的,那会起作用的。返回的布尔值确定集合是否已被调用修改。

http:// /download.oracle.com/javase/6/docs/api/java/util/Collection.html#addAll(java.util.Collection)

Yes, that'll work. The boolean returned determines whether the collection has been modified by the call.

http://download.oracle.com/javase/6/docs/api/java/util/Collection.html#addAll(java.util.Collection)

把梦留给海 2024-10-28 08:00:10

如果您的任务是编写这样的方法,则可能不允许您使用 addAll 方法(因为它太简单了,而且您学到的东西不多)。如果是这样,请考虑如何再次编写它(阅读kubi链接的文档以获取灵感)。

If your task is to write such a method, it may be the case that you are not allowed to use the addAll method (since it would be too easy, and you learn not so much). If so, think about how to write it again (read the documentation linked by kubi for inspirations).

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