java命名空间java.util接口set<e>的类成员方法:
removeall定义及介绍
本文导语:
removeall
boolean removeall(collection c)
移除 set 中那些包含在指定 collection 中的元素(可选操作)。如果指定的 collection 也是一个 set,则此操作会实际修改此 set,这样其值是两个 set 的一个不对称差集。
指定者:接口 collection 中...
boolean removeall(collection> c)
- 移除 set 中那些包含在指定 collection 中的元素(可选操作)。如果指定的 collection 也是一个 set,则此操作会实际修改此 set,这样其值是两个 set 的一个不对称差集。
- 指定者:
- 接口
collection
中的 removeall
- 参数:
c
- 包含要从此 set 中移除的元素的 collection
- 返回:
- 如果此 set 由于调用而发生更改,则返回 true
- 抛出:
unsupportedoperationexception
- 如果此 set 不支持 removeall 操作
classcastexception
- 如果此 set 元素的类与指定的 collection 不兼容(可选)
nullpointerexception
- 如果此 set 包含 null 元素并且指定的 collection 不允许 null 元素(可选),或者指定的 collection 为 null- 另请参见:
remove(object)
,
contains(object)