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

定义

将项添加到 ICollection<T> 的结尾处。

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

参数

value
T

要添加到 ICollection<T> 的末尾的值。

实现

示例

有关包含此方法的示例,请参阅 LinkedList<T> 类。

注解

LinkedList<T> 接受 null 作为对引用类型有效的 Value ,并允许重复值。

LinkedList<T>如果 为空,则新节点将成为 FirstLast

此方法是 O (1) 操作。

适用于

另请参阅