如何输出HashMap,TreeMap中的键值对

无法通过索引的方式输出HashMap,TreeMap中的键值对

我喜欢使用这种方式:

for(int i:map.keySet())
{
   System.out.println(i+" "+map.get(i));
}

HashSet和TreeSet也无法通过索引的的方式输出,可以将HashSet和TreeSet转化为Arraylist

ArrayList  list=new  ArrayList(set);

for(int i=0;i

你可能感兴趣的:(leetcode,leetcode)