SortedList<TKey,TValue>.Clear 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
移除 SortedList<TKey,TValue> 中的所有項目。
public:
virtual void Clear();
public void Clear ();
abstract member Clear : unit -> unit
override this.Clear : unit -> unit
Public Sub Clear ()
實作
備註
Count 設為零,同時也發行集合元素的其他物件參照。
Capacity 保持不變。 若要重設的 SortedList<TKey,TValue>容量,請直接呼叫 TrimExcess 或設定 Capacity 屬性。 修剪空白 SortedList<TKey,TValue> 會將的 SortedList<TKey,TValue> 容量設定為預設容量。
這個方法是 O (n
) 作業,其中 n
是 Count。