下面代码时实现Map集合的遍历,请填空:Map map=new TreeMap();map.put(1, "张三"); //键值对map.put(2, "李四");map.put(3, "王五");map.put(4, "赵六");System.out.println(map.get(2));//根据键取出值//遍历Map集合Set keys=;//取出所有的键Iterator inter=;while(inter.hasNext()){Integer i=inter.next();System.out.println(i+"——>"+);}