SortedList
類表示按鍵排序的鍵值對的集合,可以通過鍵和索引存取。
排序列表是陣列和雜湊表的組合。 它包含可以使用鍵或索引存取的專案列表。 如果您使用索引存取專案,它是一個ArrayList
,如果使用鍵存取專案,它是一個Hashtable
。專案的集合總是按鍵值排序。
下表列出了SortedList
類的一些常用屬性:
屬性 | 描述 |
---|---|
Capacity | 獲取或設定SortedList 的容量。 |
Count | 獲取SortedList 中包含的元素數量。 |
IsFixedSize | 獲取一個值,指示SortedList 是否具有固定大小。 |
IsReadOnly | 獲取一個值,指示SortedList 是否為唯讀。 |
Item | 獲取並設定與SortedList 中的指定鍵相關聯的值。 |
Keys | 獲取SortedList 中的鍵。 |
Values | 獲取SortedList 中的值。 |
下表列出了SortedList
類的一些常用方法:
序號 | 方法 | 描述 |
---|---|---|
1 | public virtual void Add(object key, object value); |
將具有指定鍵和值的元素新增到SortedList 中。 |
2 | public virtual void Clear(); |
從SortedList 中刪除所有元素。 |
3 | public virtual bool ContainsKey(object key); |
確定SortedList 是否包含指定的鍵。 |
4 | public virtual bool ContainsValue(object value); |
確定SortedList 是否包含指定值。 |
5 | public virtual object GetByIndex(int index); |
獲取SortedList 的指定索引處的值。 |
6 | public virtual object GetKey(int index); |
獲取SortedList 的指定索引處的鍵。 |
7 | public virtual IList GetKeyList(); |
獲取SortedList 中的鍵。 |
8 | public virtual IList GetValueList(); |
獲取SortedList 中的值。 |
9 | public virtual int IndexOfKey(object key); |
返回SortedList 中指定鍵從零開始的索引。 |
10 | public virtual int IndexOfValue(object value); |
返回SortedList 中指定值從零開始第一次出現的索引。 |
11 | public virtual void Remove(object key); |
從SortedList 中刪除指定鍵的元素。 |
12 | public virtual void RemoveAt(int index); |
刪除SortedList 指定索引處的元素。 |
13 | public virtual void TrimToSize(); |
將容量設定為SortedList 中實際的元素數量。 |
以下範例演示了上述概念的使用:
using System;
using System.Collections;
namespace CollectionsApplication
{
class Program
{
static void Main(string[] args)
{
SortedList sl = new SortedList();
sl.Add("001", "Maxsu");
sl.Add("002", "Alibaba");
sl.Add("003", "Tencent");
sl.Add("004", "Google");
sl.Add("005", "Microsoft");
sl.Add("006", "Apple");
sl.Add("007", "Huawei");
if (sl.ContainsValue("Yiibai"))
{
Console.WriteLine("This student name is already in the list");
}
else
{
sl.Add("008", "Yiibai");
}
// get a collection of the keys.
ICollection key = sl.Keys;
foreach (string k in key)
{
Console.WriteLine(k + ": " + sl[k]);
}
}
}
}
當上述程式碼被編譯並執行時,它產生以下結果:
001: Maxsu
002: Alibaba
003: Tencent
004: Google
005: Microsoft
006: Apple
007: Huawei
008: Yiibai