map的输出
Posted yunianzeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map的输出相关的知识,希望对你有一定的参考价值。
map的输出
Set<Entry<String,student>> entrySet = map.entrySet(); Iterator<Entry<String, student>> it2 = entrySet.iterator(); while(it2.hasNext()){ Entry<String, student> entry = it2.next(); String ID = entry.getKey(); student stu = entry.getValue(); System.out.println(ID+" "+stu); }
以上是关于map的输出的主要内容,如果未能解决你的问题,请参考以下文章