HashSet<T>.ICollection<T>.Add(T) 方法

定义

ICollection<T> 对象添加一个项。

 virtual void System.Collections.Generic.ICollection<T>.Add(T item) = System::Collections::Generic::ICollection<T>::Add;
void ICollection<T>.Add (T item);
abstract member System.Collections.Generic.ICollection<T>.Add : 'T -> unit
override this.System.Collections.Generic.ICollection<T>.Add : 'T -> unit
Sub Add (item As T) Implements ICollection(Of T).Add

参数

item
T

要添加到 ICollection<T> 对象中的对象。

实现

例外

注解

如果 Count 小于 Capacity,则此方法是 O (1) 操作。 如果必须增加容量以适应新元素,此方法将成为 O (n) 操作,其中 nCount

适用于