Array Revision - DMU

Designing and implementing Java programs that deal with: Arrays. Declaring Arrays’ of Objects. Arrays as parameters and return types. Notes. Syntax for declearing an array. Examples: char[] line = new char[80]; String[] word = new String[SIZE]; Book[] book = new Book[3 * 25]; An array is an object. An array has ONLY 1 instant variable, which is named . length. int[] grade = new int[13]; then ... ................
................