[求助]集合类问题,困惑
package collection;
import java.util.*;
public class HashtableDemo {
public static void main (String [] args){
Hashtable hashtable =new Hashtable() ;
for (int i=1;i<16;i++){
hashtable.put(new Integer(i), "集合值"+i);
}
hashtable.put(new Integer(16),"集合值16");
System.out.println("集合类的总数="+hashtable.size());
System.out.println(Collections.list(hashtable.keys()));//帮忙解释下,不是很理解
System.out.println(hashtable.values());//帮忙解释下,不是很理解,还有如果去掉.values()对结果有什么影响呀
if (hashtable.containsKey(new Integer(15)) ) {
System.out.println("标识是15的值元素="+hashtable.get(new Integer(15)));
}
}
}