Commit db4b04f1 by Tom Tromey Committed by Tom Tromey

From Bryce McKinlay:

	* libjava.lang/Array_2.java: New file.
	* libjava.lang/Array_2.out: New file.

From-SVN: r28737
parent 57ad4479
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.
......
// 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);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment