Ho un Hashmap in Java come questo:
private Map<String, Integer> team1 = new HashMap<String, Integer>();
Quindi lo riempio così:
team1.put("United", 5);
Come posso ottenere le chiavi? Qualcosa del tipo: team1.getKey()
restituire "Uniti".
int
dovrebbe essere usato per singoli come questo.
team1.getKey()
di restituire se: (1) la mappa è vuota o (2) se contiene più chiavi?