mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
15 lines
296 B
Java
15 lines
296 B
Java
|
|
// Test to make sure multidimensional arrays work.
|
||
|
|
// From Bryce McKinlay
|
||
|
|
|
||
|
|
public class Array_2
|
||
|
|
{
|
||
|
|
static final int a = 10, b = 15;
|
||
|
|
|
||
|
|
public static void main(String args[])
|
||
|
|
{
|
||
|
|
int[][] foo = new int [a][b];
|
||
|
|
System.out.println(foo.length);
|
||
|
|
System.out.println(foo[a-1].length);
|
||
|
|
}
|
||
|
|
}
|