溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JAVA集合框架Map特性是什么以及如何使用

發(fā)布時間:2021-03-11 16:34:27 來源:億速云 閱讀:138 作者:TREX 欄目:編程語言

本篇內(nèi)容主要講解“JAVA集合框架Map特性是什么以及如何使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“JAVA集合框架Map特性是什么以及如何使用”吧!

一  Map特性:

  1 Map提供一種映射關(guān)系,其中的元素是以鍵值對(key-value)的形式存儲的,能夠?qū)崿F(xiàn)根據(jù)key快速查找value;

  2 Map中鍵值對以Entry類型的對象實例形式存在;

  3 鍵,即key不可重復(fù),但是value值可以;

  4 每個鍵最多只能映射一個值;

  5 Map接口提供了分別返回key值集合、value值集合以及Entry(鍵值對)集合的方法;

  6 Map支持泛型,形式如:Map<K,V>

二  HashMap類:

  1 HashMap是Map的一個重要實現(xiàn)類,也是最常用的,基于哈希表實現(xiàn);

  2 HashMap中的Entry對象是無序排列的;

  3 Key值和Value值都可以為null,但是HashMap中只能有一個Key值為null的映射(key值不可重復(fù));

示例:

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

  /*
  * 新建學(xué)生到Map中
  * */
  public void addStudent(){
    //先添加三個學(xué)生
    Scanner console = new Scanner(System.in);
    int i = 0;
    while(i<3){
      System.out.println("請輸入學(xué)生ID:");
      String id = console.next();
      Student s = students.get(id);
      if(s == null){
        System.out.println("請輸入學(xué)生姓名:");
        String name = console.next();
        Student student = new Student(Integer.parseInt(id),name);
        students.put(id,student);
        System.out.println("添加了學(xué)生:"+student.id+"-"+student.name);
        i++;
      }else{
        System.out.println("該ID已經(jīng)被占用");
        continue;
      }
    }
  }

  /*
  * 試用HashMap的keySet方法
  *
  * 順便遍歷Students
  * */
  public void forEachStudents(){
    Set<String> ks = students.keySet();
    System.out.println("共有學(xué)生數(shù)量"+students.size()+"個,具體如下:");
    for(String key: ks){
      Student student = students.get(key);
      if( student != null){
        System.out.println("學(xué)生ID:"+student.id+"-學(xué)生姓名:"+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;
  }

}

返回結(jié)果:

請輸入學(xué)生ID:
請輸入學(xué)生姓名:
劉備
添加了學(xué)生:1-劉備
請輸入學(xué)生ID:
請輸入學(xué)生姓名:
關(guān)羽
添加了學(xué)生:2-關(guān)羽
請輸入學(xué)生ID:
請輸入學(xué)生姓名:
張飛
添加了學(xué)生:3-張飛
共有學(xué)生數(shù)量3個,具體如下:
學(xué)生ID:1-學(xué)生姓名:劉備
學(xué)生ID:2-學(xué)生姓名:關(guān)羽
學(xué)生ID:3-學(xué)生姓名:張飛

到此,相信大家對“JAVA集合框架Map特性是什么以及如何使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI