I know that for arrays you can add an element in a two dimensional array this way:
array[0][1] = 17; //just an example
How can I do the same thing with ArrayList?
|
I know that for arrays you can add an element in a two dimensional array this way:
How can I do the same thing with ArrayList? |
|||
maybe? This assumes a nested
And to pick on your choice of words: This assigns a value to a specific place in the inner list, it doesn't add one. But so does your code example, as arrays are of a fixed size, so you have to create them in the right size and then assign values to the individual element slots. If you actually want to add an element, then of course it's |
|||||||||
|
with outerList being a Remember that 2-dimensional arrays don't exist. They're in fact arrays or arrays. |
|||
|
|
Each element must be initialised These elements contain elements of type String To get back the String "String" in the 3-line example, you would use Java Code: 1 String getValue = data.get(0).get(0); |
|||
|
|
get(1)returns, assigning 17 to it won't add it to the List - and won't compile anyway, surely? – DNA Mar 3 '12 at 23:16