0

我有一个名为 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>();

任何人都可以帮我解决这个问题吗?

4

1 回答 1

1

添加

custom.put("string_key1", tempItems1);
custom.put("string_key2", tempItems2);

遍历

for (Map.Entry<String, Items> entry : custom.entrySet()) {
    // entry.getKey()
    // entry.getValue()
}
于 2012-12-13T18:27:24.930 回答