Quick actions

cmd+k|ctrl+k

Navigation

Languages

HashTable

Snippet info

Language

Java

Visibility

public

Author

hospino11

Created

2025-02-19T03:56:21.88504Z

Updated

2025-02-19T04:02:08.171559Z

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