当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。