import java.util.HashMap;
import java.util.Map.Entry;
public class Main {
public static void main(String[] args) {
HashMap<String, Integer> dict = new HashMap<String, Integer>(); // {}
dict.put("Tom", 1); // {"Tom"->1}
dict.put("Jone", 2);
dict.put("Mary", 1);
for(Entry<String,Integer> entry : dict.entrySet())
{
System.out.println(entry.getKey()+" is in class"+entry.getValue());
}
}
}
import java.util.HashSet;
public class Main1 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
HashSet<Integer> hashSet=new HashSet<Integer>();
hashSet.add(1);
hashSet.add(2);
hashSet.add(3);
hashSet.add(4);
hashSet.remove(1);
if(hashSet.contains(2))
{
System.out.print("yes");
}
for(int num:hashSet)
{
//java中hashset是无序的 如果要将所有的元素有序输出 需要在排序
System.out.print(num);
}
}
}