java.util.IdentityHashMap.keySet() 方法


java.util.IdentityHashMap.keySet() 方法

package com.codingdict;

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 a set view
      Set nset = ihmap.keySet();

      System.out.println("Set view is: " + nset);
   }    
}