I want to make arrayList object in java that work as two dimentional array. My question is how can we access value from specific dimention from arrayList.
in two diment
An arraylist is not an object to make a 2 dimentional arrays. However you can use it anyway : You can use :
new ArrayList>; //or new ArrayList;
But you should implement your own matrix class because you will probably have some check to do and a function get(int row, int column) would be cool
get(int row, int column)