我的类“炸弹”的 Java 中有一个 ArrayList。
这个类有一个方法'isExploded',如果炸弹已经爆炸,这个方法将返回true,否则返回false。
现在我试图遍历这个arraylist,调用这个方法isExploded,如果它返回true,则从列表中删除元素。
我知道如何迭代:
for (Iterator i = bombGrid.listIterator(); i.hasNext();) {
if () {
i.remove();
}
但我不知道如何通过迭代器访问 Bomb 类本身的 isExploded 方法。有谁知道这个问题的答案?
真挚地,
卢克索