1. 程式人生 > >Java高階特性與實戰專案 第1章集合框架

Java高階特性與實戰專案 第1章集合框架

/**
 * 第1章集合框架 5.建立一個HashMap物件,並在其中新增一些學員的姓名和他們的分數,鍵為學員姓名(使用String型別),
 * 值為學員分數(lnteger型別)從HashMap物件中獲取這些學員的成績並輸出。修改其中一名學員的成績, 然後再次輸出所有學員的成績。
 *
 */
public class HashMapodd {
 public static void main(String[] args) {
  // 第1.宣告Map介面
  Map student = new HashMap();
  // 第2.新增 put(Object key鍵名,Object value值)
  student.put("趙某人", "85");
  student.put("錢某人", "73");
  student.put("孫某人", "68");
  student.put("李某人", "90");
  student.put("周某人", "98");
  // 第3.顯示學員成績
  System.out.println("本班有" + student.size() + "個學員");
  System.out.println("學員");
  System.out.println(student.keySet());
  System.out.println("成績");
  System.out.println(student.values());
  System.out.println("學員成績");
  System.out.println(student);