In Iterator Sun added the remove method to remove the last accessed element of the collection. Why there is no add method to add a new element to the collection? What kind of side-effects it may have to the collection or iterator?
|
|
|||||||
|
|
The sole purpose of an Iterator is to enumerate through a collection. All collections contain the EDIT: While working on another problem, I came up with another reason that
This is an array of 5 elements. However, there are six indices. The letter "a" in this array is listed as element 0 because in order to read it, left to right like a computer does, you have to start at index 0. Now, if we are iterating through this array (yes, collection, but it boils down to an array), we will start at index 0 and continue to index 1. At this point in the Iterator, we want to call All in all, the arguments one way or another both have valid points, but the bottom line is that the behavior of an |
|||||||||||||
|
|
If you are working on a list you could use ListIterator which provides both add and remove operations. |
|||||
|
|
Okay, here we go: The answer is clearly stated in the design faq: Why don't you provide an Iterator.add method? The semantics are unclear, given that the contract for Iterator makes no guarantees about the order of iteration. Note, however, that ListIterator does provide an add operation, as it does guarantee the order of the iteration. http://docs.oracle.com/javase/1.4.2/docs/guide/collections/designfaq.html#10 |
|||
|
|
|
I cannot think of any theoretical reason why But I will say that in all my years of programming in Java -- over 15! -- I have never wanted an |
|||
|
|
