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);
  }

}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-20
  • 2021-07-06
  • 2022-12-23
  • 2021-05-19
  • 2022-12-23
猜你喜欢
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
  • 2021-12-15
  • 2022-12-23
相关资源
相似解决方案