HashTable
class Main {
public static void main(String[] args) {
HashTable<Integer> myHashTable = new HashTable<>(50);
myHashTable.set("grapes", 10000);
System.out.println("Printing grapes value: " + myHashTable.get("grapes"));
}
}INFO