0
我有一個ArrayList填充2D數組中的對象。我想要在ArrayList的索引處獲取二維數組中對象的索引。例如:獲取ArrayList中二維數組的索引
Object map[][] = new Object[2][2];
map[0][0] = Object a;
map[0][1] = Object b;
map[1][0] = Object c;
map[1][1] = Object d;
List<Object> key = new ArrayList<Object>();
key.add(map[0][0]);
key.add(map[0][1]);
key.add(map[1][0]);
key.add(map[1][1]);
我想要做的是:
getIndexOf(key.get(0)); //I am trying to get a return of 0 and 0 in this instance, but this is obviously not going to work
有誰知道我可以在特定位置獲得二維數組的索引? (索引是隨機的)。如果您有任何問題,請告訴我。謝謝!
darn!以及我會用你的建議,謝謝! – Evorlor 2013-05-08 01:31:48