Map的value转化为其它类型
map的values()
Collection
//转化为List:
List<String> l=new ArrayList<String>(map.values());
for(String s:l){
System.out.print(s);
}
转化为数组
//1.直接为Object[]数组
Object[] array = map.values().toArray();
for(Object s:array){
System.out.print(s);
}
//2.转化为value泛型的数组(此处为String[])
String[] strings = map.values().toArray(new String[map.size()]);
for(String s:strings){
System.out.print(s);
}
择善人而交,择善书而读,择善言而听,择善行而从。