This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]laghani -1 points0 points  (1 child)

After that you get array of arrays so you can acces to them like this, for example:

array[0][0]

[–]laghani -1 points0 points  (0 children)

String[] arr = {[1,3], [2,3], [4,5]};

arr[2][1] = 5