Created by alim586
over 9 years ago
|
||
An array type can be?
Once allocated, all the array elements store...
Initializing an one-dimensional array with for loop
Initializing an array
Initializing an multi-dimensional array with nested for loop
Initializing an multidimensional array
What happens when you try to access a nonexistent array index position?
Combining array declaration, allocation, and initialization
What happens when you
access: multArr[1][1];?
int[][] multArr = new int{{1,2},null,{2,5,8}};
What values do elements of Interface type array store?
What values do elements of Abstract class type array store?
What values do elements of object type arrays store?