Remove HashTable elements

We can remove elements from HashTable using methods provided in it There are 2 methods listed below which can be used to remove elements from HashTable Object remove(Object key) Removes the mapping for the specified key from this HashTable if present. Void clear() Removes all of the mappings from this HashTable Example import java.util.*; public […]

Share this article on

Add elements in HashTable

We can use put() and putAll() methods of HashTable to add elements to HashTable Object put(Object key, Object value); Associates the specified value with the specified key in this map. This method is used to add single key-value pair to the HashTable Example import java.util.*; public class HashTablePutExample { public static void main(String args[]) { […]

Share this article on
< Previous Next >