package com.concretepage;
import java.util.HashMap;
public class HashMapNullKey {
public static void main(String[] args) {
HashMap hmap = new HashMap();
hmap.put(null, "1");
System.out.println(hmap.get(null));
}
}
import java.util.HashMap;
public class HashMapNullKey {
public static void main(String[] args) {
HashMap hmap = new HashMap();
hmap.put(null, "1");
System.out.println(hmap.get(null));
}
}
No comments:
Post a Comment