java命名空间java.util类treeset<e>的类成员方法:
remove定义及介绍
本文导语:
remove
public boolean remove(object o)
将指定的元素从 set 中移除(如果该元素存在于此 set 中)。更确切地讲,如果 set 中包含满足 (o==null ? e==null : o.equals(e)) 的元素 e,则移除一个这样的元素。如果此 set 包含这样的元素(或者此 ...
remove
public boolean remove(object o)
- 将指定的元素从 set 中移除(如果该元素存在于此 set 中)。更确切地讲,如果 set 中包含满足 (o==null ? e==null : o.equals(e)) 的元素
e
,则移除一个这样的元素。如果此 set 包含这样的元素(或者此 set 由于调用而发生更改),则返回 true
。(一旦调用返回,则此 set 不再包含这样的元素。)
- 指定者:
- 接口
collection
中的 remove
- 指定者:
- 接口
set
中的 remove
- 覆盖:
- 类
abstractcollection
中的 remove
- 参数:
o
- 将从此 set 中移除的对象(如果存在)
- 返回:
- 如果此 set 包含指定元素,则返回
true
- 抛出:
classcastexception
- 如果指定对象无法与该 set 中的当前元素进行比较
nullpointerexception
- 如果指定元素为 null,并且此 set 使用自然顺序,或者其比较器不允许使用 null 元素