ArrayLists and Iterators
Read this chapter about lists and the useful methods that are available for adding and inserting elements into a list.
28. Details
Answer:
indexOf returns 2
Details
Things are getting a little complicated. It would be good to look at some details.
- An
ArrayList
of entries is constructed - Several
Entry
objects are put into the list. - A target
Entry
object is created. - The
indexOf()
searches for the target in the list.- The
equals(Object)
method ofEntry
is used. - The picture shows the third comparison (which returns true).
- The
- A match is found at cell number 2
The indexOf(Object)
method is a member of the ArrayList
, but it uses the equals(Object)
method of Entry
.
Question 27:
Would playing with the program help?