此屬性用於獲取包含Dictionary中的鍵的集合。
用法:
public System.Collections.Generic.Dictionary<TKey, TValue>.KeyCollection Keys { get; }
返回值:它返回一個包含Dictionary中關鍵字的集合。
以下示例程序旨在說明上面討論的屬性的使用:
范例1:
// C# code to get the keys // in the Dictionary using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Create a new dictionary of // strings, with string keys. Dictionary<string, string> myDict = new Dictionary<string, string>(); // Adding key/value pairs in myDict myDict.Add("Australia", "Canberra"); myDict.Add("Belgium", "Brussels"); myDict.Add("Netherlands", "Amsterdam"); myDict.Add("China", "Beijing"); myDict.Add("Russia", "Moscow"); myDict.Add("India", "New Delhi"); // To get count of key/value pairs in myDict Console.WriteLine("Total key/value pairs"+ " in myDict are:" + myDict.Count); // To get the keys alone, // use the Keys property. Dictionary<string, string>.KeyCollection keyColl = myDict.Keys; // The elements of the KeyCollection // are strongly typed with the type // that was specified for dictionary // keys foreach(string s in keyColl) { Console.WriteLine("Key = {0}", s); } } }
Total key/value pairs in myDict are:6 Key = Australia Key = Belgium Key = Netherlands Key = China Key = Russia Key = India
范例2:
// C# code to get the keys in the Dictionary using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Create a new dictionary of // strings, with string keys. Dictionary<int, int> myDict = new Dictionary<int, int>(); // Adding key/value pairs in myDict myDict.Add(9, 8); myDict.Add(3, 4); myDict.Add(4, 7); myDict.Add(1, 7); // To get count of key/value pairs in myDict Console.WriteLine("Total key/value pairs "+ "in myDict are:" + myDict.Count); // To get the keys alone, // use the Keys property. Dictionary<int, int>.KeyCollection keyColl = myDict.Keys; // The elements of the KeyCollection // are strongly typed with the type // that was specified for dictionary keys. foreach(int s in keyColl) { Console.WriteLine("Key = {0}", s); } } }
Total key/value pairs in myDict are:4 Key = 9 Key = 3 Key = 4 Key = 1
Key就是鍵,value就是值,
我們在很多地方都會用到字典,他的特點就是查找很快,當然比List快。
字典必須包含名空間System.Collection.Generic
Dictionary里面的每一個元素都是一個鍵值對(由二個元素組成:鍵和值)
鍵必須是唯一的,而值不需要唯一的
鍵和值都可以是任何類型(比如:string, int, 自定義類型,等等)
常用屬性
名稱 說明
Comparer 獲取用於確定字典中的鍵是否相等的 IEqualityComparer<T>。
Count 獲取包含在 Dictionary<TKey, TValue> 中的鍵/值對的數目。
Item 獲取或設置與指定的鍵相關聯的值。
Keys 獲取包含 Dictionary<TKey, TValue> 中的鍵的集合。
Values 獲取包含 Dictionary<TKey, TValue> 中的值的集合。
常用方法
名稱 說明
Add 將指定的鍵和值添加到字典中。
Clear 從 Dictionary<TKey, TValue> 中移除所有的鍵和值。
ContainsKey 確定 Dictionary<TKey, TValue> 是否包含指定的鍵。
ContainsValue 確定 Dictionary<TKey, TValue> 是否包含特定值。
Equals(Object) 確定指定的 Object 是否等於當前的 Object。 (繼承自 Object。)
Finalize 允許對象在“垃圾回收”回收之前嘗試釋放資源並執行其他清理操作。 (繼承自 Object。)
GetEnumerator 返回循環訪問 Dictionary<TKey, TValue> 的枚舉器。
GetHashCode 用作特定類型的哈希函數。 (繼承自 Object。)
GetObjectData 實現 System.Runtime.Serialization.ISerializable 接口,並返回序列化 Dictionary<TKey, TValue> 實例所需的數據。
GetType 獲取當前實例的 Type。 (繼承自 Object。)
MemberwiseClone 創建當前 Object 的淺表副本。 (繼承自 Object。)
OnDeserialization 實現 System.Runtime.Serialization.ISerializable 接口,並在完成反序列化之后引發反序列化事件。
Remove 從 Dictionary<TKey, TValue> 中移除所指定的鍵的值。
ToString 返回表示當前對象的字符串。 (繼承自 Object。)
TryGetValue 獲取與指定的鍵相關聯的值。
