Chapter 39: Hashtable

No Comments

Hashtable is a class in Java collections which implements Map interface and extends the Dictionary Class Contains only unique elements and its synchronized

Section 39.1: Hashtable

import java.util.*;
public class HashtableDemo {
public static void main(String args[]) {
// create and populate hash table
Hashtable<Integer,  String>  map  =  new  Hashtable<Integer,  String>(); map.put(101,”C  
Language”);
map.put(102,  “Domain”);
map.put(104,  “Databases”);
System.out.println(“Values  before  remove:  “+  map);
// Remove value for key 102
map.remove(102);
System.out.println(“Values  after  remove:  “+  map);
}
}

About us and this blog

We are a digital marketing company with a focus on helping our customers achieve great results across several key areas.

Request a free quote

We offer professional SEO services that help websites increase their organic search score drastically in order to compete for the highest rankings even when it comes to highly competitive keywords.

Subscribe to our newsletter!

More from our blog

See all posts
No Comments

Recent Posts