SortedSet<T>.ICollection<T>.Add(T) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
向 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> 对象中的对象。
实现
例外
注解
此成员是显式接口成员的实现。 它只能在 SortedSet<T> 实例被强制转换为 ICollection<T> 接口时使用。
如果 Count 小于 Capacity,则此方法是一个 O(1)
操作。 如果必须增加容量以适应新元素,此方法将成为一个 O(n)
操作,其中 n
为 Count。