Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
I think you have a duplication: stackoverflow.com/questions/993025/… – mihaisimi Jun 25 '12 at 20:12
@mihaisimi -- no, this is really a different question. – Ernest Friedman-Hill Jun 25 '12 at 20:14
Yes, you are right. Still coobird provided a good answer to this on that thread. – mihaisimi Jun 25 '12 at 20:15

4 Answers

up vote 5 down vote accepted

The sole purpose of an Iterator is to enumerate through a collection. All collections contain the add() method to serve your purpose. There would be no point in adding to an Iterator because the collection may or may not be ordered (in the case of a HashSet).

EDIT: While working on another problem, I came up with another reason that Iterator lacks an add() method. Looking under the hood of ArrayList (line 111), and HashMap (line 149), we see that the implementation is just a few methods surrounding an array of objects. Now we consider how arrays are treated in memory.

enter image description here

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 add("f");. At this point, let's compare the implications of add() and remove(). remove() would leave a space in the array, which is easy to jump over, because we can immediately recognize that it isn't a member. On the other hand, add() would put a new element in which wasn't there before. This will affect the length of the array that we're iterating through. What happens when we get to that last element? Can we even guarantee that it is there (that is, that the array hasn't exceeded the maximum size)?

All in all, the arguments one way or another both have valid points, but the bottom line is that the behavior of an add() method is not well defined in all cases. Sun had to make a choice where to limit functionality, and they chose not to include this method.

share|improve this answer
"because the collection may or may not be ordered" - do you please elaborate it a little. Thanks – droidsites Jun 25 '12 at 20:24
I got your statement :-) . Thanks – droidsites Jun 25 '12 at 20:42
A HashSet gives no guarantee for the order of its members. If you are iterating through it to try to find a point at which to insert a value, you've just defeated the point of an Iterator. – gobernador Jun 25 '12 at 20:43
1  
But then there wouldn't be a point in removing from an Iterator either. Yet remove() exists to make it (optionally) possible to remove elements without invalidating the Iterator. Shouldn't add(E) exist to make it possible to add elements without invalidating the Iterator? Of course you can add elements to the Iterable after the iteration. But the same goes for removal of elements. I think Iterator has a remove() method because generally it's efficient, easy to implement and defined clearly in contrast to add(T). – Robert Jun 26 '12 at 3:42
@Robert It's a shaky argument, I admit, but I agree with your last sentence. As jontro links in his (second) answer, the design FAQ doesn't even give a good explanation. I believe a remove() method has more of a place in an Iterator than an add(T) method. The bottom line is that, for some reason, Sun chose to limit an Iterator's capabilities at that particular point. – gobernador Jun 27 '12 at 1:51

If you are working on a list you could use ListIterator which provides both add and remove operations.

share|improve this answer
1  
Doesn't answer the question actually. But yes, Iterator doesn't implement add because it's not ListIterator. – Robert Jun 25 '12 at 20:23

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

share|improve this answer

I cannot think of any theoretical reason why add() could not have been included in Iterator. Just as the Iterator can allow for elements being removed from the collection through itself, it could be designed to handle elements being added in the same way.

But I will say that in all my years of programming in Java -- over 15! -- I have never wanted an Iterator.add() method. So I suspect it's simply not all that useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.