import java.util.*;
public class Demo
{
public static void main(String[] args){
Map<String,Integer> map=new HashMap<String,Integer>();
map.put("chen",0);
System.out.println(map.get("chen"));//0
System.out.println(map.size());//1
System.out.println(map.containsKey("chen"));//true
System.out.println(map.containsValue(1));//false
//map.remove("chen");//没有chen这个key了
//map.clear();//所有元素都没有了
map.put("zou",1);
for (Object o : map.keySet()) {//返回key的Set集合
System.out.println("key=" + o + " value=" + map.get(o));
}
for(Map.Entry<String,Integer> mape:map.entrySet()){//返回单个<key,value>
String s=mape.getKey();
int i=mape.getValue();
System.out.println(s);
System.out.println(i);
}
}
}
public class Demo
{
public static void main(String[] args){
Map<String,Integer> map=new HashMap<String,Integer>();
map.put("chen",0);
System.out.println(map.get("chen"));//0
System.out.println(map.size());//1
System.out.println(map.containsKey("chen"));//true
System.out.println(map.containsValue(1));//false
//map.remove("chen");//没有chen这个key了
//map.clear();//所有元素都没有了
map.put("zou",1);
for (Object o : map.keySet()) {//返回key的Set集合
System.out.println("key=" + o + " value=" + map.get(o));
}
for(Map.Entry<String,Integer> mape:map.entrySet()){//返回单个<key,value>
String s=mape.getKey();
int i=mape.getValue();
System.out.println(s);
System.out.println(i);
}
}
}