将集合相互添加
我正在审查一个类,这是一个老问题:
我需要编写一个方法
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,那会起作用的。返回的布尔值确定集合是否已被调用修改。
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)
如果您的任务是编写这样的方法,则可能不允许您使用 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).