java命名空间java.util接口set<e>的类成员方法:
addall定义及介绍
本文导语:
addall
boolean addall(collection
addall
boolean addall(collection extends e> c)
- 如果 set 中没有指定 collection 中的所有元素,则将其添加到此 set 中(可选操作)。如果指定的 collection 也是一个 set,则 addall 操作会实际修改此 set,这样其值是两个 set 的一个并集。如果操作正在进行的同时修改了指定的 collection,则此操作的行为是不确定的。
- 指定者:
- 接口
collection
中的 addall
- 参数:
c
- 包含要添加到此 set 中的元素的 collection
- 返回:
- 如果此 set 由于调用而发生更改,则返回 true
- 抛出:
unsupportedoperationexception
- 如果 set 不支持 addall 操作
classcastexception
- 如果某些指定 collection 元素的类不允许它添加到此 set
nullpointerexception
- 如果指定的 collection 包含一个或多个 null 元素并且此 set 不允许 null 元素,或者指定的 collection 为 null
illegalargumentexception
- 如果指定 collection 元素的某些属性不允许它添加到此 set- 另请参见:
add(object)