我有一个名为 Items 的类,其中包含一些数据,如下所示:
class Items {
public String item1 ;
public String item2;
public int item3;
}
我有另一个 Java 类,它为这个 Items 类设置值,如下所示:
Items tempItems1 = new Items();
tempItems1 .item1 = "a";
tempItems1 .item2 = "b";
tempItems1 .item3 = 1;
Items tempItems2 = new Items();
tempItems2 .item1 = "aa";
tempItems2 .item2 = "bb";
tempItems2 .item3 = 11;
现在的问题是我需要将这两个对象(tempItems1,tempItems2)添加到 HashTable 中,这样我就可以遍历 HashTable 来获取它的值。
我如下创建了 HashTable,但无法找到一种方法来添加上述每个 Java 对象并遍历它。
HashTable<String,Items> custom = new HashTable<String,Items>();
任何人都可以帮我解决这个问题吗?