using System; using System.Collections; public class SamplesSortedList { public static void Main() { // Creates and initializes a new SortedList. SortedList mySL = new SortedList(); mySL.Add("Third", "!"); mySL.Add("Second", "World"); mySL.Add("First", "Hello"); // Displays the properties and values of the SortedList. Console.WriteLine( "mySL" ); Console.WriteLine( " Count: {0}", mySL.Count ); Console.WriteLine( " Capacity: {0}", mySL.Capacity ); Console.WriteLine( " Keys and Values:" ); PrintKeysAndValues( mySL ); } public static void PrintKeysAndValues( SortedList myList ) { Console.WriteLine( "\t-KEY-\t-VALUE-" ); for ( int i = 0; i < myList.Count; i++ ) { Console.WriteLine( "\t{0}:\t{1}", myList.GetKey(i), myList.GetByIndex(i) ); } Console.WriteLine(); } } /* This code produces the following output. mySL Count: 3 Capacity: 16 Keys and Values: -KEY- -VALUE- First: Hello Second: World Third: ! */ ---------- SortedList 表示索引鍵/值組配對的集合,這個集合按索引鍵排序,而且可以按索引鍵和索引存取。 如需這個集合的泛型版本,請參閱 System.Collections.Generic.SortedList。 SortedList 元素可以透過其索引鍵進行存取 (如任何 IDictionary 實作中的元素),或透過其索引進行存取 (如任何 IList 實作中的元素)。 SortedList 物件在內部保持兩個陣列以儲存清單的元素;其中一個陣列用來儲存索引鍵,另一個用來儲存相關聯的值。 每個元素都是可當做 DictionaryEntry 物件存取的索引鍵/值組配對。 索引鍵不可以是 null,但值卻可以。 SortedList 物件的容量是 SortedList 可以保存的元素數目。 隨著元素逐漸加入 SortedList 內,也會視需要透過重新配置的方式自動增加容量。 若要降低容量,可以呼叫 TrimToSize 或明確地設定 Capacity 屬性。 根據建立 SortedList 時指定的特定 IComparer 實作,或者根據索引鍵本身提供的 IComparable 實作,使用索引鍵來排序 SortedList 物件的元素。 不論是那一種情況, SortedList 都不允許重複的索引鍵。 索引的順序是根據排序的順序。當元素被加入時,會以正確的排序順序將它插入 SortedList 中,而索引也會相應的調整。 當項目被移除時,索引也會進行相應的調整。因此,特定索引鍵/值組的索引可能會在 SortedList 物件中加入或移除元素時有所變更。 由於排序的關係,在 SortedList 物件上進行的作業通常都比在 Hashtable 物件上進行的作業慢。 然而, SortedList 允許透過相關聯的索引鍵或索引存取值,以提供較大的彈性。 使用整數索引可以存取這個集合中的元素。這個集合中的索引以零起始。 C# 語言 (在 Visual Basic 中為 for each) 的 foreach 陳述式 (Statement) 需要集合中每個元素的型別。 由於 SortedList 物件的各個元素都是索引鍵/值組,因此元素型別既不是索引鍵型別,也不是值型別。 相反的,元素型別為 DictionaryEntry。 例如: foreach (DictionaryEntry de in mySortedList) {...} ---------- using System; using System.Collections.Generic; public class Example { public static void Main() { // Create a new sorted list of strings, with string // keys. SortedList openWith = new SortedList(); // Add some elements to the list. There are no // duplicate keys, but some of the values are duplicates. openWith.Add("txt", "notepad.exe"); openWith.Add("bmp", "paint.exe"); openWith.Add("dib", "paint.exe"); openWith.Add("rtf", "wordpad.exe"); // The Add method throws an exception if the new key is // already in the list. try { openWith.Add("txt", "winword.exe"); } catch (ArgumentException) { Console.WriteLine("An element with Key = \"txt\" already exists."); } // The Item property is another name for the indexer, so you // can omit its name when accessing elements. Console.WriteLine("For key = \"rtf\", value = {0}.", openWith["rtf"]); // The indexer can be used to change the value associated // with a key. openWith["rtf"] = "winword.exe"; Console.WriteLine("For key = \"rtf\", value = {0}.", openWith["rtf"]); // If a key does not exist, setting the indexer for that key // adds a new key/value pair. openWith["doc"] = "winword.exe"; // The indexer throws an exception if the requested key is // not in the list. try { Console.WriteLine("For key = \"tif\", value = {0}.", openWith["tif"]); } catch (KeyNotFoundException) { Console.WriteLine("Key = \"tif\" is not found."); } // When a program often has to try keys that turn out not to // be in the list, TryGetValue can be a more efficient // way to retrieve values. string value = ""; if (openWith.TryGetValue("tif", out value)) { Console.WriteLine("For key = \"tif\", value = {0}.", value); } else { Console.WriteLine("Key = \"tif\" is not found."); } // ContainsKey can be used to test keys before inserting // them. if (!openWith.ContainsKey("ht")) { openWith.Add("ht", "hypertrm.exe"); Console.WriteLine("Value added for key = \"ht\": {0}", openWith["ht"]); } // When you use foreach to enumerate list elements, // the elements are retrieved as KeyValuePair objects. Console.WriteLine(); foreach( KeyValuePair kvp in openWith ) { Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value); } // To get the values alone, use the Values property. IList ilistValues = openWith.Values; // The elements of the list are strongly typed with the // type that was specified for the SorteList values. Console.WriteLine(); foreach( string s in ilistValues ) { Console.WriteLine("Value = {0}", s); } // The Values property is an efficient way to retrieve // values by index. Console.WriteLine("\nIndexed retrieval using the Values " + "property: Values[2] = {0}", openWith.Values[2]); // To get the keys alone, use the Keys property. IList ilistKeys = openWith.Keys; // The elements of the list are strongly typed with the // type that was specified for the SortedList keys. Console.WriteLine(); foreach( string s in ilistKeys ) { Console.WriteLine("Key = {0}", s); } // The Keys property is an efficient way to retrieve // keys by index. Console.WriteLine("\nIndexed retrieval using the Keys " + "property: Keys[2] = {0}", openWith.Keys[2]); // Use the Remove method to remove a key/value pair. Console.WriteLine("\nRemove(\"doc\")"); openWith.Remove("doc"); if (!openWith.ContainsKey("doc")) { Console.WriteLine("Key \"doc\" is not found."); } } } /* This code example produces the following output: An element with Key = "txt" already exists. For key = "rtf", value = wordpad.exe. For key = "rtf", value = winword.exe. Key = "tif" is not found. Key = "tif" is not found. Value added for key = "ht": hypertrm.exe Key = bmp, Value = paint.exe Key = dib, Value = paint.exe Key = doc, Value = winword.exe Key = ht, Value = hypertrm.exe Key = rtf, Value = winword.exe Key = txt, Value = notepad.exe Value = paint.exe Value = paint.exe Value = winword.exe Value = hypertrm.exe Value = winword.exe Value = notepad.exe Indexed retrieval using the Values property: Values[2] = winword.exe Key = bmp Key = dib Key = doc Key = ht Key = rtf Key = txt Indexed retrieval using the Keys property: Keys[2] = doc Remove("doc") Key "doc" is not found. */