java命名空间java.util接口collection<e>的类成员方法:
removeall定义及介绍
本文导语:
removeall
boolean removeall(collection c)
移除此 collection 中那些也包含在指定 collection 中的所有元素(可选操作)。此调用返回后,collection 中将不包含任何与指定 collection 相同的元素。
参数:c - 办好要从此 collection 移除的元素...
boolean removeall(collection> c)
- 移除此 collection 中那些也包含在指定 collection 中的所有元素(可选操作)。此调用返回后,collection 中将不包含任何与指定 collection 相同的元素。
- 参数:
c
- 办好要从此 collection 移除的元素的 collection
- 返回:
- 如果此 collection 由于调用而发生更改,则返回 true
- 抛出:
unsupportedoperationexception
- 如果此 collection 不支持 removeall 方法
classcastexception
- 如果此 collection 中一个或多个元素的类型与指定 collection 不兼容(可选)
nullpointerexception
- 如果此 collection 包含一个或多个 null 元素,并且指定的 collection 不支持 null 元素(可选),或者指定的 collection 为 null- 另请参见:
remove(object)
,
contains(object)