当前位置:   article > 正文

Map接口下的HashMap类的一个子类LinkedHashMap_public class linkedhashmapdemo { public static voi

public class linkedhashmapdemo { public static void main(string[] args) { li
  • 在HashMap下面有一个子类LinkedHashMap,它是链表和哈希表组合的一个数据存储结构。输出是根据输入的顺序输出的
public class LinkedHashMapDemo {
    public static void main(String[] args) {
        LinkedHashMap<String, String> map = new LinkedHashMap<String, String>();
        map.put("邓超", "孙俪");
        map.put("李晨", "范冰冰");
        map.put("刘德华", "朱丽倩");
        Set<Entry<String, String>> entrySet = map.entrySet();
        for (Entry<String, String> entry : entrySet) {
            System.out.println(entry.getKey() + "  " + entry.getValue());
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

结果:

邓超  孙俪
李晨  范冰冰
刘德华  朱丽倩
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/306619
推荐阅读
相关标签
  

闽ICP备14008679号