Two Dimensional Arrays in Java

Examples of Two Dimensional Arrays and some source Code

[ Home] [ Site Map ]

Links:






Part I. How to declare a Java Array


The line of code in the below declares an Array called 2D that has 4 rows and 5 columns.

int[][] 2D = new int[4[5]
Run the source code below to understand how two dimensional arrays work.
Java Source Code
site map | resources