C# 中的 SortedMap 接口
Java 具有 SortedMap 接口,而 C# 中的等价接口是 SortedList。
C# 中的 SortedList 集合使用键和索引来访问列表中的项。
排序列表是数组和哈希表的一种组合。它包含一个列表,该列表可以使用键或索引进行访问。如果你使用索引访问项,它就是一个 ArrayList,如果你使用键访问项,它是一个 Hashtable。项的集合始终按键值排序。
让我们看一个有关使用 SortedList 和显示键的示例 −
示例
using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { SortedList sl = new SortedList(); sl.Add("ST0", "One"); sl.Add("ST1", "Two"); sl.Add("ST2", "Three"); ICollection key = sl.Keys; foreach(string k in key) { Console.WriteLine(k); } } } }
输出
ST0 ST1 ST2
广告