您好,登錄后才能下訂單哦!
本篇內容主要講解“JAVA集合框架Map特性是什么以及如何使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“JAVA集合框架Map特性是什么以及如何使用”吧!
一 Map特性:
1 Map提供一種映射關系,其中的元素是以鍵值對(key-value)的形式存儲的,能夠實現根據key快速查找value;
2 Map中鍵值對以Entry類型的對象實例形式存在;
3 鍵,即key不可重復,但是value值可以;
4 每個鍵最多只能映射一個值;
5 Map接口提供了分別返回key值集合、value值集合以及Entry(鍵值對)集合的方法;
6 Map支持泛型,形式如:Map<K,V>
二 HashMap類:
1 HashMap是Map的一個重要實現類,也是最常用的,基于哈希表實現;
2 HashMap中的Entry對象是無序排列的;
3 Key值和Value值都可以為null,但是HashMap中只能有一個Key值為null的映射(key值不可重復);
示例:
package com.collection; import java.util.HashMap; import java.util.Set; import java.util.Scanner; public class MapTest { public HashMap<String,Student> students = new HashMap<String,Student>(); /* * 新建學生到Map中 * */ public void addStudent(){ //先添加三個學生 Scanner console = new Scanner(System.in); int i = 0; while(i<3){ System.out.println("請輸入學生ID:"); String id = console.next(); Student s = students.get(id); if(s == null){ System.out.println("請輸入學生姓名:"); String name = console.next(); Student student = new Student(Integer.parseInt(id),name); students.put(id,student); System.out.println("添加了學生:"+student.id+"-"+student.name); i++; }else{ System.out.println("該ID已經被占用"); continue; } } } /* * 試用HashMap的keySet方法 * * 順便遍歷Students * */ public void forEachStudents(){ Set<String> ks = students.keySet(); System.out.println("共有學生數量"+students.size()+"個,具體如下:"); for(String key: ks){ Student student = students.get(key); if( student != null){ System.out.println("學生ID:"+student.id+"-學生姓名:"+student.name); } } } public static void main(String[] args){ MapTest mt = new MapTest(); mt.addStudent(); mt.forEachStudents(); } }
其中Student類如下:
package com.collection; import java.util.HashSet; import java.util.Set; public class Student { public int id; public String name; //set中添加某個對象無論添加多少次,最終只會保留一個該對象(的引用),并且,保留的是第一次添加的那個 public Set<Course> course = new HashSet<Course>(); public Student(int id, String name){ this.id = id; this.name = name; } }
返回結果:
請輸入學生ID:
請輸入學生姓名:
劉備
添加了學生:1-劉備
請輸入學生ID:
請輸入學生姓名:
關羽
添加了學生:2-關羽
請輸入學生ID:
請輸入學生姓名:
張飛
添加了學生:3-張飛
共有學生數量3個,具體如下:
學生ID:1-學生姓名:劉備
學生ID:2-學生姓名:關羽
學生ID:3-學生姓名:張飛
到此,相信大家對“JAVA集合框架Map特性是什么以及如何使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。