IdentityHashMap() constructor from IdentityHashMap has the following syntax.
public IdentityHashMap()
In the following code shows how to use IdentityHashMap.IdentityHashMap() constructor.
/*from w w w .j a v a2 s .co m*/ import java.util.IdentityHashMap; import java.util.Map; public class Main { public static void main(String[] argv) throws Exception { Map<Object, Object> objMap = new IdentityHashMap<Object, Object>(); Object o1 = new Integer(123); Object o2 = new Integer(123); objMap.put(o1, "first"); objMap.put(o2, "second"); Object v1 = objMap.get(o1); // first Object v2 = objMap.get(o2); // second } }