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


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


Java HashMap isEmpty() 方法檢查哈希圖是否為空。

用法:

hashmap.isEmpty()

這裏,hashmapHashMap 類的對象。

參數:

isEmpty() 方法不接受任何參數。

返回:

  • 返回true如果 hashmap 不包含任何鍵/值映射
  • 返回false如果哈希圖包含鍵/值映射

示例:檢查 HashMap 是否為空

import java.util.HashMap;

class Main {
    public static void main(String[] args) {
        // create an HashMap
        HashMap<String, Integer> languages = new HashMap<>();
        System.out.println("Newly Created HashMap: " + languages);

        // checks if the HashMap has any element
        boolean result = languages.isEmpty(); // true
        System.out.println("Is the HashMap empty? " + result);

        // insert some elements to the HashMap
        languages.put("Python", 1);
        languages.put("Java", 14);
        System.out.println("Updated HashMap: " + languages);

        // checks if the HashMap is empty
        result = languages.isEmpty();  // false
        System.out.println("Is the HashMap empty? " + result);
    }
}

輸出

Newly Created HashMap: {}
Is the HashMap empty? true
Updated HashMap: {Java=14, Python=1}
Is the HashMap empty? false

在上麵的示例中,我們創建了一個名為 languages 的 hashmap。在這裏,我們使用了isEmpty() 方法來檢查hashmap 是否包含任何元素。

最初,新創建的 hashmap 不包含任何元素。因此,isEmpty()返回true.但是,在我們添加一些元素之後(Python, Java ),方法返回false.

相關用法


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