我有整數陣列[i] [j](for循環內的for循環)的二維數組,我想推i和j值到二維堆棧上。將整數的二維數組推入Java中的堆棧
我已經定義堆棧如下:
Stack<Integer[][]> stack = new Stack<Integer[][]>()
;
如何將i和j推入堆棧?
我已經試過:
stack.push([i][j]);
但是Eclipse吐出:
Exception in thread "AWT-EventQueue-0" java.lang.Error: Unresolved compilation problem: Syntax error on token "(", Expression expected after this token
謝謝,工作完美。 – user1265313 2012-03-14 06:21:42