我有一個Java類的形式如下:的Java迭代器的原始類型
class Example {
private byte[][] data;
public Example(int s) { data = new byte[s][s]; }
public byte getter(int x, int y) { return byte[x][y]; }
public void setter(int x, int y, byte z) { byte[x][y] = z; }
}
我希望能夠通過在專用數據到外部循環迭代器,像這樣:
for(byte b : Example) { ;/* do stuff */ }
我試圖執行一個私人迭代器類,但我遇到了問題:
private class ExampleIterator implements Iterator {
private int curr_x;
private int curr_y;
public ExampleIterator() { curr_x=0; curr_y=-1; }
public boolean hasNext() {
return curr_x != field.length-1
&& curr_y != field.length-1; //is not the last cell?
}
public byte next() { // <-- Error is here:
// Wants to change return type to Object
// Won't compile!
if(curr_y=field.length) { ++curr_x; curr_y=0; }
return field[curr_x][curr_y];
}
public void remove() { ; } //does nothing
}
我將如何實現外部迭代器的基元類型(非泛型)?這在Java中可能嗎?
是否有一個用於原始類型的模擬'Iterable',所以我可以做'for(double d:myContainerWithDoubles){}'? –
沒有for-each原型迭代器。最佳匹配是實現'PrimitiveIterator.OfDouble'並以功能性的方式使用它。 – Oroboros102