Goodrich 6e Ch03 Arrays PDF
Goodrich 6e Ch03 Arrays PDF
Arrays
Arrays
Array Definition
q
i
Arrays
k
Arrays
Arrays
new elementType[length]
length is a positive integer denoting the length
of the new array.
The new operator returns a reference to the
new array, and typically this would be
assigned to an array variable.
Arrays
Arrays of Characters or
Object References
q
Arrays
A game entry stores the name of a player and her best score so far in a game
Arrays
Arrays
Adding an Entry
q
0 1 2
0 1 2
e
i
board
board
Arrays
Java Example
Arrays
10
Removing an Entry
q
e
i
0 1 2
0 1 2
board
board
Arrays
n
11
Java Example
Arrays
12