final HashMap<Integer, HashMap<Integer, Integer[]>> teams;
teams= new HashMap<Integer, HashMap<Integer, Integer[]>>();
teams.put(1,new HashMap<Integer, Integer[]>(){{
put(2,new Integer[] { 1,0});}});
System.out.println(teams.get(1).get(2));
我正在尝试在 java 中实现散列的散列。我需要打印存储在哈希哈希中的整数数组。在这方面的任何帮助将不胜感激。