? ? Java基礎之:集合——Map
底層結構圖: ? ? ? 虛線為實現(xiàn)關系,實線為繼承關系。 ? ? ? Map接口常用方法
package class_Map; import java.util.HashMap; import java.util.Map; public class ClassTest01_MapMethods { ? @SuppressWarnings({ "unchecked", "rawtypes" }) public static void main(String[] args) { ? Map map = new HashMap(); //put:添加。 /* 1.若要添加的key值集合中沒有,則直接添加。 2.若集合中已存在相同的key值,則直接替換掉。 3.key中只能有一個null存在,若存在多個null則根據(jù)上面的規(guī)則,只會保留最后一個null 4.value中可以有多個null存在。 5.k-v是無序的,取出順序和添加順序是不一樣的。 */ map.put("1", "hello01"); map.put("2", "hello02"); map.put("3", "hello03"); map.put("3", "hello05"); map.put("4", "hello02"); map.put(null, "hello02"); map.put("5", null); ? //get:根據(jù)鍵獲取值 System.out.println(map.get("3"));//返回值:hello05 //size:獲取元素個數(shù) System.out.println(map.size());//返回值:6 //isEmpty:判斷個數(shù)是否為0 System.out.println(map.isEmpty()); //返回值:false //containsKey:查找鍵是否存在 System.out.println(map.containsKey(null)); //返回值:true //remove:根據(jù)鍵刪除映射關系,返回指為鍵所指的值 System.out.println(map.remove(null)); //返回值:hello02 //clear:清除 map.clear(); System.out.println(map); } } ? Map接口的遍歷方式需要使用的方法:
兩種遍歷方式(每種方式又分別有迭代器和增強for兩種):
package class_Map; ? import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Set; ? public class ClassTest02_ForeachMap { ? @SuppressWarnings({ "rawtypes", "unchecked" }) public static void main(String[] args) { ? Map map = new HashMap(); map.put("1", "hello01"); map.put("2", "hello02"); map.put("3", "hello03"); map.put("3", "hello05"); map.put("4", "hello02"); map.put(null, "hello02"); map.put("5", null); //方式1:遍歷鍵,再取出值 System.out.println("========方式一:迭代器======="); Set key = map.keySet(); //取出key,放入Set集合 //迭代器方式: Iterator iterator = key.iterator(); while(iterator.hasNext()) { Object obj = iterator.next(); //遍歷鍵,將鍵賦值給obj System.out.println(obj " == " map.get(obj)); //通過鍵,訪問值,進行遍歷 } iterator = key.iterator(); //增強for循環(huán)方式: System.out.println("========方式一:增強for======="); for(Object obj:key) { System.out.println(obj " -- " map.get(obj)); } //方式二:直接遍歷鍵值對 //將鍵值對放入Set中,此時entrySet編譯類型為Set集合,運行類型為HashMap$Node("$"符號代表內(nèi)部類,后面跟類名是內(nèi)部類,跟數(shù)值是匿名內(nèi)部類) Set entrySet = map.entrySet(); //取出鍵值對k-v,放入Set集合 //迭代器方式: System.out.println("========方式二:迭代器======="); Iterator iterator2 = entrySet.iterator(); while(iterator2.hasNext()) { //這里無法訪問HashMap.Node,但Node實現(xiàn)了Map接口中的一個內(nèi)部接口Entry,可以使用動態(tài)綁定機制 // HashMap.Node node = (HashMap.Node)iterator2.next(); //報錯:The type HashMap.Node is not visible /* 理解為什么需要是用Map.Entry來強轉(zhuǎn)從entrySet中取出的鍵值對: 1.在HashMap中有內(nèi)部類Node,用于保存鍵值對,但Node是靜態(tài)成員內(nèi)部類,不可以在外部訪問,所以不能使用其get方法。 2.由于HashMap繼承與Map接口,Node又實現(xiàn)了Map接口中的一個內(nèi)部接口Entry。 3.即通過Entry接口就可以通過動態(tài)綁定的方式訪問到Node內(nèi)部類的方法 */ Map.Entry entry = (Map.Entry)iterator2.next(); System.out.println(entry.getKey() " :: " entry.getValue()); } iterator2 = entrySet.iterator(); //增強for循環(huán)方式: System.out.println("========方式二:增強for======="); for(Object obj:entrySet) { Map.Entry entry = (Map.Entry)obj; System.out.println(entry.getKey() " .. " entry.getValue()); } } } 說明:直接遍歷鍵值對所使用的動態(tài)綁定機制的思路和"OOP——內(nèi)部類"最后的思考題相同。 ? Map接口練習使用HashMap添加3個員工對象,要求 鍵:員工id 值:員工對象 并遍歷顯示工資>18000的員工 (遍歷方式最少兩種) 員工類:姓名、工資、員工id package class_Map; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Set; public class ClassWork01 { ? @SuppressWarnings({ "unused", "rawtypes", "unchecked" }) public static void main(String[] args) { Map hashMap = new HashMap(); Employee employee1 = new Employee("小范", 1001, 22000); Employee employee2 = new Employee("小黃", 1002, 14000); Employee employee3 = new Employee("小雨", 1003, 23000); hashMap.put(employee1.getId(), employee1); //這里第一個參數(shù)employee1.getId()自動裝箱,因為原本需要是Object類型 hashMap.put(employee2.getId(), employee2); //而取出來是Int類型,自動裝箱為Integer。 hashMap.put(employee3.getId(), employee3); // System.out.println(hashMap); //遍歷方式1:遍歷鍵,再通過鍵,取出值 Set key = hashMap.keySet(); Iterator iterator = key.iterator(); while(iterator.hasNext()) { //將hashMap中的key鍵取出,放入Set中(實際是HashSet),再通過迭代器遍歷取出key,通過hashMap.get方法取出值 Object obj = iterator.next(); //從HashSet中取出key鍵 , 此時key編譯類型是Object,運行類型是Integer(因為鍵是員工id) // System.out.println(obj.getClass()); if(isOut(hashMap.get(obj))) { System.out.println(obj "--" hashMap.get(obj)); } } iterator = key.iterator(); System.out.println("========================================="); //遍歷方式2:直接遍歷鍵值對 //將鍵值對放入Set中,此時entrySet編譯類型為Set接口,運行類型為HashMap$Node("$"符號代表內(nèi)部類,后面跟類名是內(nèi)部類,跟數(shù)值是匿名內(nèi)部類) Set entrySet = hashMap.entrySet(); Iterator iterator2 = entrySet.iterator(); while(iterator2.hasNext()) { /* * 理解為什么需要是用Map.Entry來強轉(zhuǎn)從entrySet中取出的鍵值對 * 1.在HashMap中有內(nèi)部類Node,用于保存鍵值對,但Node是靜態(tài)成員內(nèi)部類,不可以在外部訪問,所以不能使用其get方法。 * 2.由于HashMap繼承與Map接口,Node又實現(xiàn)了Map接口中的一個內(nèi)部接口Entry。 * 3.即通過Entry接口就可以通過動態(tài)綁定的方式訪問到Node內(nèi)部類的方法 */ Map.Entry node = (Map.Entry)iterator2.next(); if(isOut(node.getValue())) { System.out.println(node.getKey() "==" node.getValue()); } } iterator2 = entrySet.iterator(); } public static boolean isOut(Object object) { if(!(object instanceof Employee)) { return false; } Employee e = (Employee)object; return e.getSalary() > 18000; } ? } ? class Employee{ private String name; private int id; private double salary; public Employee(String name, int id, double salary) { super(); this.name = name; this.id = id; this.salary = salary; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getId() { return id; } public void setId(int id) { this.id = id; } public double getSalary() { return salary; } public void setSalary(double salary) { this.salary = salary; } @Override public String toString() { return "Employee [name=" name ", id=" id ", salary=" salary "]"; } } 程序輸出: 1001--Employee [name=小范, id=1001, salary=22000.0] 1003--Employee [name=小雨, id=1003, salary=23000.0] ============================================= 1001--Employee [name=小范, id=1001, salary=22000.0] 1003--Employee [name=小雨, id=1003, salary=23000.0] ? 來源:https://www./content-1-799451.html |
|