int [][] feld = { {1,2,3}, {3,4}, {5}, {} }; for (int [] line : feld) { for (int item : line) { System.out.print (item + " "); } System.out.println (); }
dynamische Dimensionierung und Allokation, Bereichsprüfungen. Nicht notwendig rechteckig.