इस पोस्ट में हम VB.Net में प्रयोग होने वाली Hash Table के बारे में जानेगे |
Hash Table
Hashtable का use paired type के data को store करने के लिए किया जाता है। यह collection भी arraylist की तरह ही होता है, पर इसमे item को access करने के लिए key का use किया जाता है। इसमे सभी items की एक key होती है। value array मे store होने वाली value ही होती है केवल इसमे सभी values के साथ एक key भी होती है। hashtable मे key और value दोनों object type के होते हैं।
Declaration of HashTable
Syntax: Dim <HashTable name>As New HashTable
Example: Dim htable As new HashTable
Important Functions used in HashTable
Add: इस function का use hashtable मे value को add करने के लिए किया जाता है। इसमे Key – key value है और Value- add होने वाला item है।
Syntax: HashTable.Add (key, value)
Example:
htable.add (1, “A”)
htable.add (2, “B”)
htable.add (3, “C”)
ContainsKey(): इस function का use hashtable मे key को check करने के लिए किया जाता है।
Syntax: Hashtable.ContainsKey (Key)
Example: htable.ContainsKey (1)
ContainsValue: इस function का use hashtable मे value को check करने के लिए किया जाता है।
Syntax: Hashtable.ContainsValue (Value)
Example:htable.ContainsKey (“A”)
Remove: इस function का use key और उसकी value को hashtable से delete करने के लिए किया जाता है।
Syntax: Hashtable.Remove(key)
Example: htable.remove(2)