Java long Array - long Array in Java, Initializing

The long array will be initialized to 0 when you allocate it. All arrays in Java are initialized to the default value for the type. This means that arrays of ints are initialised to 0, arrays of longs are initialised to 0, arrays of booleans are initialised to false and arrays of reference types are initialised to null. ................
................