位置:首頁 > Java技術 > Java.util包 > java.util.IdentityHashMap.size()方法實例

java.util.IdentityHashMap.size()方法實例

size() 方法用於獲取在此標識哈希映射中的鍵 - 值映射關係數量。

聲明

以下是java.util.IdentityHashMap.size()方法的聲明。

public int size()

參數

  • NA

返回值

在方法調用返回鍵 - 值映射關係在這個映射中的數量。

異常

  • NA

例子

下麵的例子顯示java.util.IdentityHashMap.size()方法的使用

package com.yiibai;

import java.util.*;

public class IdentityHashMapDemo {
   public static void main(String args[]) {
      // create identity hash 
      IdentityHashMap ihmap = new IdentityHashMap();
                 
      // populate the ihmap
      ihmap.put(1, "java");
      ihmap.put(2, "util");
      ihmap.put(3, "package");      
     
      System.out.println("Size of the map: " + ihmap.size());
   }    
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

Size of the map: 3