HashMap stores sorted key - value pairs. The keys are unique, can't be modified but can be deleted.
In order to use it, the following line needs to be added:
The inserted data must correspond to the key's and values type.
Example:
In this example, 2 records have been inserted with String
keys and Integer
values.
If we uncomment the last line, an exception will be thrown.
Values can be accessed via their keys.
Let's look at the following example:
Output:
The key-value pair for Coke
is set at line 7
and accessed at line 10
.
Accessing key that's not set in the map results in a default value - null.
Let's look at the following example:
Output:
The map doesn't contain any Coke
key, so null is printed.
Let's have a program in which students scores are stored in map and printed afterwards.
Output:
Notice that maps store data sorted by their keys. For that reason the names are printed in alphabetical order.
That's done via the remove
function which accepts key as argument. Like in this example:
Size is the count of the key-value pairs.
It can be accessed via the size
function.
Let's look at this example:
Output:
4 records were inserted and 1 is deleted afterwards. This makes for 3 key-value pairs.