Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hallo,
ich habe ein 2D array
int [][] array = new int[7][6];
.
ich möchte aber nur eine Zeile an eine Funktion übergeben. Geht das.
void funk(int[] row)
z.B.
funk(array[0]);//0.Zeile
oder ginge nur das hier
funk(int[][] arr)
Ja, das geht.