Приведенный ниже код не дает мне скомпилировать, выдавая следующую ошибку: "foreach не относится к типу 'Bag <\ java.lang.Integer>'".
Я не понимаю, в чем проблема, потому что класс "Bag" реализует "Iterable", поэтому, я думаю, цикл должен рассматривать "Bag" как "Iterable". Пожалуйста, не могли бы вы прояснить ситуацию для меня?
class Bag<Item> implements Iterable<Item> {
private Node first;
private class Node {
Item item;
Node next;
}
public void add(Item item) {
Node oldfirst = first;
first = new Node();
first.item = item;
first.next = oldfirst;
}
public Iterator<Item> iterator() {
return new ListIterator();
}
private class ListIterator implements Iterator<Item> {
private Node current = first;
public boolean hasNext() {
return current != null;
}
public void remove() {}
public Item next() {
Item item = current.item;
current = current.next;
return item;
}
}
public static void main(String[] args) {
Bag<Integer> a = new Bag();
a.add(5);
a.add(10);
for (int w : a) {
System.out.println(w.iterator());
}
}
}