Multidimensional arrays may be specified with bracket sets appearing on either or both sides of the array name : Array Dimension « Java Source And Data Type « SCJP

Home
SCJP
1.Java Source And Data Type
2.Operators
3.Modifiers
4.Type Casting
5.Statements
6.Object Oriented
7.Thread
8.Utility Classes
9.File
SCJP » Java Source And Data Type » Array Dimension 
1.18.5.Multidimensional arrays may be specified with bracket sets appearing on either or both sides of the array name
public class MainClass{
    public static void main(String[] argv){
        String[] s[];
       // String [][]s;
       // String s []  [  ];

        System.out.println();
    }
}
1.18.Array Dimension
1.18.1.Array index is starting at array index 0
1.18.2.To refer to the size of an array, use .length member variable
1.18.3.An irregular multi-dimension array
1.18.4.The outermost array is a single-dimension array containing references
1.18.5.Multidimensional arrays may be specified with bracket sets appearing on either or both sides of the array name
1.18.6.Multidimensional arrays may be initialized by nesting array initializers
1.18.7.Specify the length of an array dimension by putting an integer within a bracket set.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.