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的输出的主要内容,如果未能解决你的问题,请参考以下文章

在片段中添加 Google Maps API V2

CSP核心代码片段记录

RecyclerView holder中的Android Google Maps动态片段

php Yoast SEO规范输出的代码片段

php Yoast SEO规范输出的代码片段

java8 .stream().sorted().filter().map().collect()用法