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


Java Map size()用法及代碼示例


映射size()方法Java中的,用於獲取總數條目,即鍵值對。因此,當您希望總條目顯示在Map上時,此方法很有用。如果Map包含多個整數MAX_VALUE 元素返回 整數MAX_VALUE

用法:

int size();

參數:此方法不帶任何參數。

返回值:此方法返回此映射中的鍵值映射數。



範例1:對於非通用輸入

Java

// Java program to illustrate 
// the Map size() Method 
import java.util.*; 
  
public class MapSizeExample { 
    
      // Main Method 
    public static void main(String[] args) 
    { 
        Map map = new HashMap(); 
        
          // Adding key-values 
        map.put(1, "Amit"); 
        map.put(5, "Rahul"); 
        map.put(2, "Jai"); 
        map.put(6, "Amit"); 
        
          // using the method 
        System.out.println("Size of the map is:"
                           + map.size()); 
    } 
}

輸出:

Size of the map is:4

範例2:對於通用輸入

Java

// Java program to illustrate 
// the Map size() Method 
import java.util.*; 
  
class MapSizeExample { 
  
    // Main Method 
    public static void main(String[] args) 
    { 
  
        Map<Integer, String> map 
            = new HashMap<Integer, String>(); 
  
        map.put(1, "one"); 
        map.put(2, "two"); 
        map.put(3, "three"); 
        map.put(4, "four"); 
            
        // using the method 
        System.out.println("Size of map is:"
                           + map.size()); 
    } 
}

輸出:

Size of the map is:4

注意讀者!現在不要停止學習。以student-friendly的價格掌握Java和Java集合基礎知識課程中所有重要的Java和集合概念,並做好行業準備。




相關用法


注:本文由純淨天空篩選整理自AshishVishwakarma1大神的英文原創作品 Map size() Method in Java With Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。