public class Array1 {
	public static void main(String[] args) {
		int 			firstArray[] 	= new int[10];
		int[] 		secondArray 	= new int[10];
		double[]		thirdArray		= {3.14, 2+5, 42.0};

		System.out.println("length of firstArray="+ firstArray.length );
		System.out.println("length of secondArray="+ secondArray.length );
		System.out.println("length or thirdArray="+ thirdArray.length );
		for (int i=0; i<thirdArray.length; i++)
			System.out.println("thirdArray["+i+"]="+thirdArray[i]);

		System.out.println("lenght of anonymous array="+ (new byte[] {1,2,3}).length);
	} //main()
} //class Array1