你可以这样 自己创建一个Set 比如Set set = map.keySet();然后循环出来for(String s : set ){ School school = map.get(s); System.out.println(s + ":" + school);} 这样就可以了恩