3D Array
-
hallo
ich will 3D String array erstellen
int x = 1;
String [10][x][2] data;
x ++;
bei jedem lauf eine schleife soll x um 1 erhöht werden
wie kann ich solche array erstellen ???ich möchet den Vector Datentyp nicht benutzen
danke
-
Versuch es mal so
String[][][] a = new String[5][5][5];
Viel spass