當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java HashMap get()用法及代碼示例


在本教程中,我們將借助示例了解 Java HashMap get() 方法。

get()方法返回hashmap中指定key對應的值。

示例

import java.util.HashMap;

class Main {
  public static void main(String[] args) {
    // create an HashMap
    HashMap<Integer, String> numbers = new HashMap<>();
    numbers.put(1, "Java");
    numbers.put(2, "Python");
    numbers.put(3, "JavaScript");

    // get the value with key 1
    String value = numbers.get(1);

    System.out.println("HashMap Value with Key 1: " + value);
  }
}

// Output: HashMap Value with Key 1: Java

用法:

用法:

hashmap.get(Object key)

這裏,hashmapHashMap 類的對象。

參數:

get() 方法采用單個參數。

  • key- 映射的鍵價值將被退回

返回:

  • 返回價值指定的鑰匙已關聯的

注意: 方法返回null, 如果任一指定鑰匙映射到一個空值或者鑰匙哈希圖上不存在。

示例 1:使用整數鍵獲取字符串值

import java.util.HashMap;

class Main {
  public static void main(String[] args) {
    // create an HashMap
    HashMap<Integer, String> numbers = new HashMap<>();

    // insert entries to the HashMap
    numbers.put(1, "Java");
    numbers.put(2, "Python");
    numbers.put(3, "JavaScript");
    System.out.println("HashMap: " + numbers);

    // get the value
    String value = numbers.get(3);
    System.out.println("The key 3 maps to the value: " + value);

  }
}

輸出

HashMap: {1=Java, 2=Python, 3=JavaScript}
The key 3 maps to the value: JavaScript

在上麵的示例中,我們創建了一個名為 numbers 的 hashmap。 get() 方法用於訪問與鍵1 關聯的值Java

注意: 我們可以使用哈希映射containsKey()檢查哈希圖中是否存在特定鍵的方法。

示例 2:使用字符串鍵獲取整數值

import java.util.HashMap;

class Main {
  public static void main(String[] args) {
    // create an HashMap
    HashMap<String, Integer> primeNumbers = new HashMap<>();

    // insert entries to the HashMap
    primeNumbers.put("Two", 2);
    primeNumbers.put("Three", 3);
    primeNumbers.put("Five", 5);
    System.out.println("HashMap: " + primeNumbers);

    // get the value
    int value = primeNumbers.get("Three");

    System.out.println("The key Three maps to the value: " + value);
  }
}

輸出

HashMap: {Five=5, Two=2, Three=3}
The key Three maps to the value: 3

在上麵的示例中,我們使用 get() 方法通過鍵 Three 獲取值 3

相關用法


注:本文由純淨天空篩選整理自 Java HashMap get()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。