两者都提供对数据的键值访问。Hashtable是Java中的原始集合类之一。HashMap是新的 Collections Framework的一部分,与Java 2 v1.2一起添加。
两者之间的主要区别在于,对 Hashtable 的访问在表上同步,而对 HashMap 的访问则不是。您可以添加它,但默认情况下它不存在。
另一个区别是,HashMap 中的迭代器是故障安全的,而 Hashtable 的枚举器不是。如果您在迭代时更改地图,您就会知道。
而且,第三个区别是HashMap允许其中的空值,而Hashtable则不允许。
回答您编辑过的问题:
/** imageID --> image map */
//imageID - String. imgs is a map of imageID and ImageIcon. imageID is key. ImageIcon is value.
Map<String,ImageIcon> imgs = new HashMap<String,ImageIcon>();
然后在课堂上:
//SEE INLINE COMMENTS
// images
//No definition provided. May be putting values into the imgs map.
loadImages();
//this.DEFAULT_IMAGE_ID is some imageID. imgs.get gets the value for that imageID, which
//is ImageIcon for that imageID. That is stored in actualImage variable.
actualImage = imgs.get(this.DEFAULT_IMAGE_ID);
//Creating a new JLabel with actualImage.
JLabel label = new JLabel(actualImage);