is it possible to append this
in
Programming Questions
•
2 years ago
this works:
- int[] ids = new int[3];
- int[][] recharts = new int[1][0];
- ids[0] = 22;
- ids[1] = 15;
- ids[2] = 32;
- recharts[0] = ids;
but i want
new int[1][0]; to be
new int[0][0];
and here:
recharts[0] = ids;
do the append magic, i only have problems achieving this.
Or must i use an arrayList again? (i prefer not)
1