主题:求助!
The statement int [] counts = new int [26];
A) Creates a pointer to an integer array, but doesn't actually allocate any memory for it. A maximum size of 26 numbers is set for later use
B) Creates an array object that can hold up to 26 whole numbers
C) Creates an array object, initially with enough memory allocated to hold 26 numbers. But this will be extended automatically if you go past the end of the array
C) Creates an array object that can hold up to 27 whole numbers (positions 0 through 26)
A) Creates a pointer to an integer array, but doesn't actually allocate any memory for it. A maximum size of 26 numbers is set for later use
B) Creates an array object that can hold up to 26 whole numbers
C) Creates an array object, initially with enough memory allocated to hold 26 numbers. But this will be extended automatically if you go past the end of the array
C) Creates an array object that can hold up to 27 whole numbers (positions 0 through 26)