LinkedList<T>.AddLast 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在 LinkedList<T> 的結尾加入新節點或值。
多載
AddLast(LinkedListNode<T>) |
在 LinkedList<T> 的結尾加入指定的新節點。 |
AddLast(T) |
在 LinkedList<T> 的結尾加入包含指定值的新節點。 |
AddLast(LinkedListNode<T>)
在 LinkedList<T> 的結尾加入指定的新節點。
public:
void AddLast(System::Collections::Generic::LinkedListNode<T> ^ node);
public void AddLast (System.Collections.Generic.LinkedListNode<T> node);
member this.AddLast : System.Collections.Generic.LinkedListNode<'T> -> unit
Public Sub AddLast (node As LinkedListNode(Of T))
參數
- node
- LinkedListNode<T>
要在 LinkedListNode<T> 結尾加入的新 LinkedList<T>。
例外狀況
node
為 null
。
node
屬於另一個 LinkedList<T>。
範例
如需包含這個方法的範例,請參閱 LinkedList<T> 類別。
備註
LinkedList<T> 接受 null
作為參考型別的有效 Value 值,並允許重複的值。
LinkedList<T>如果是空的,則新節點會First變成 和 Last。
這個方法是 O (1) 作業。
另請參閱
適用於
AddLast(T)
在 LinkedList<T> 的結尾加入包含指定值的新節點。
public:
System::Collections::Generic::LinkedListNode<T> ^ AddLast(T value);
public System.Collections.Generic.LinkedListNode<T> AddLast (T value);
member this.AddLast : 'T -> System.Collections.Generic.LinkedListNode<'T>
Public Function AddLast (value As T) As LinkedListNode(Of T)
參數
- value
- T
要在 LinkedList<T> 結尾加入的值。
傳回
包含 value
的新 LinkedListNode<T>。
範例
如需包含這個方法的範例,請參閱 LinkedList<T> 類別。
備註
LinkedList<T> 接受 null
作為參考型別的有效 Value 值,並允許重複的值。
LinkedList<T>如果是空的,則新節點會First變成 和 Last。
這個方法是 O (1) 作業。