LinkedHashMap元素次序存取保持一致
Posted 简简单单zjl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LinkedHashMap元素次序存取保持一致相关的知识,希望对你有一定的参考价值。
package com.day15.Map;
import java.util.LinkedHashMap;
public class LinkedHashMap_One {
public static void main(String[] args) {
LinkedHashMap<String, Integer> ihm=new LinkedHashMap<>();
ihm.put("Kobe", 20);
ihm.put("KG",21);
ihm.put("PP",22);
ihm.put("Allen",23);
System.out.println(ihm);
}
}
以上是关于LinkedHashMap元素次序存取保持一致的主要内容,如果未能解决你的问题,请参考以下文章