1

我在尝试将公共迭代器放入类中以读取类中的 Map 并在其他类中实现此迭代器时遇到问题。或者换句话说,

我有 A 类。A 类包含一个私有 HashMap,我想通过一个迭代此映射的公共迭代器来访问它。

我也有 B 类。我试图在 B 类中运行这个迭代器来读取 A 类的内容。

这可能看起来有点迂回(或者更确切地说,很多迂回),但我的任务指定类 A 中的数据系统对其他类隐藏,并建议使用公共迭代器来访问数据。有一个示例说明 B 类中的方法可能是什么样子,我已尽我所能遵循。

但是,无法让它工作。

这是我拥有的代码的模型。我尝试编译它,它与我的真实代码完全一样。

// this is class A

public class Giant {

private Map<Item, Integer> myMap = new HashMap<Item, Integer>();

// add a bunch of items to the map, check if they worked fine

public Iterator<Map.Entry<Item, Integer>> giantIterator = myMap.entrySet().iterator();

}

// and this is in class B

public void receive(Giant mouse){
    System.out.println("I've started!");
        Iterator<Map.Entry<Item, Integer>> foo = mouse.giantIterator;

        while (foo.hasNext()) {
            Map.Entry<Item, Integer> entry = foo.next();
            System.out.println("I'm working!");
        }
}

我还有一个测试类,它创建任一类的对象,然后运行该receive方法。

我收到消息“我已经开始了!” 但不是“我在工作!”

同时,如果我在任一类中都有两个迭代器 print a toString,则 toStrings 是相同的。

我也不能简单地将我应该在 B 类中执行的操作移动到 A 类,因为迭代器有几种不同的方法,并且在每种方法中用于稍有不同的事情。

我有点难过。我在语法中遗漏了什么吗?我进口的东西有错吗?我是否完全搞砸了这应该如何工作?这完全不可能吗?

4

3 回答 3

3

尝试通过这样的函数公开迭代器:

public class Giant {
    private Map<Item, Integer> myMap = new HashMap<Item, Integer>();
    public Iterator<Map.Entry<Item, Integer>> getGiantIterator() {
         return myMap.entrySet().iterator();
    }
}

在 B 类更改中:

    Iterator<Map.Entry<Item, Integer>> foo = mouse.giantIterator;

Iterator<Map.Entry<Item, Integer>> foo = mouse.getGiantIterator();

这样迭代器在需要之前不会被创建。

按照您的编码方式,迭代器是在地图仍然为空时创建的。我怀疑这可能是您问题的根源。

于 2013-02-28T06:45:34.723 回答
2

您的迭代器是在构造 A 时构造的,当时 Map 为空。

创建一个返回最新版本的方法 getIterator()。

于 2013-02-28T06:47:21.027 回答
0

如果您有一个迭代器,并且希望各种类访问它,则将该变量设置为“静态”。

于 2013-02-28T06:49:30.400 回答