java命名空间java.util类collections的类成员方法:
addall定义及介绍
本文导语:
addall
public static boolean addall(collection
addall
public static boolean addall(collection super t> c,
t... elements)
- 将所有指定元素添加到指定 collection 中。可以分别指定要添加的元素,或者将它们指定为一个数组。此便捷方法的行为与 c.addall(arrays.aslist(elements)) 的行为是相同的,但在大多数实现下,此方法运行起来可能要快得多。
在分别指定元素时,此方法提供了将少数元素添加到现有 collection 中的一个便捷方式:
collections.addall(flavors, "peaches 'n plutonium", "rocky racoon");
- 参数:
c
- 要插入 elements 的 collectionelements
- 插入 c 的元素
- 返回:
- 如果 collection 由于调用而发生更改,则返回 true
- 抛出:
unsupportedoperationexception
- 如果 c 不支持 add 操作
nullpointerexception
- 如果 elements 包含一个或多个 null 值并且 c 不允许使用 null 元素,或者 c 或 elements 为 null
illegalargumentexception
- 如果 elements 中值的某个属性不允许将它添加到 c 中- 从以下版本开始:
- 1.5
- 另请参见:
collection.addall(collection)