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


Java java.util.IdentityHashMap.entrySet()用法及代碼示例



描述

這個entrySet()方法用於獲取此映射中包含的映射的集合視圖。

聲明

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

public Set<Map.Entry<K,V>> entrySet()

參數

NA

返回值

方法調用返回包含在此映射中的 identity-mappings 的集合視圖。

異常

NA

示例

下麵的例子展示了 java.util.IdentityHashMap.entrySet() 的用法

package com.tutorialspoint;

import java.util.*;

public class IdentityHashMapDemo {
   public static void main(String args[]) {

      // create identity hash map
      IdentityHashMap ihmap = new IdentityHashMap();

      // populate the map
      ihmap.put(1, "java");
      ihmap.put(2, "util");
      ihmap.put(3, "package");

      // create entry set from the map
      Set enset = ihmap.entrySet();

      System.out.println("Set view of the map:" + enset);
   }    
}

讓我們編譯並運行上麵的程序,這將產生以下結果。

Set view of the map:[2=util, 3=package, 1=java]

相關用法


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