From Bryce McKinlay:
* libjava.lang/Array_2.java: New file. * libjava.lang/Array_2.out: New file. From-SVN: r28737
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
1999-08-17 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
From Bryce McKinlay:
|
||||
* libjava.lang/Array_2.java: New file.
|
||||
* libjava.lang/Array_2.out: New file.
|
||||
|
||||
1999-08-09 Anthony Green <green@cygnus.com>
|
||||
|
||||
* libjava.lang/Primes.java: New file.
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
10
|
||||
15
|
||||
Reference in New Issue
Block a user