HashSet<T>.Add(T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的項目加入至集合。
public:
virtual bool Add(T item);
public:
bool Add(T item);
public bool Add (T item);
abstract member Add : 'T -> bool
override this.Add : 'T -> bool
member this.Add : 'T -> bool
Public Function Add (item As T) As Boolean
參數
- item
- T
要加入至集合的項目。
傳回
如果將項目加入 HashSet<T> 物件,則為 true
;如果項目已存在,則為 false
。
實作
範例
下列範例示範如何建立和填入兩個 HashSet<T> 物件。 這個範例是針對方法提供之較大範例的 UnionWith 一部分。
HashSet<int> evenNumbers = new HashSet<int>();
HashSet<int> oddNumbers = new HashSet<int>();
for (int i = 0; i < 5; i++)
{
// Populate numbers with just even numbers.
evenNumbers.Add(i * 2);
// Populate oddNumbers with just odd numbers.
oddNumbers.Add((i * 2) + 1);
}
備註
如果 Count 已經等於物件的容量 HashSet<T> ,就會自動調整容量以容納新專案。
如果 Count 小於內部數位的容量,則這個方法是 O (1) 作業。 HashSet<T>如果物件必須重設大小,這個方法會變成 O (n
) 作業,其中 n
是 Count。