I would think that Iterator.copy() would be quite a handy function. You could implement iterator filters in a much better way.
For example, the only reason in Googles Java Collection for the filter (and similar) functions to use UnmodifiableIterator (which is just an Iterator without remove) is because you cannot implement such a filter Iterator otherwise without being able to copy it at some point. (Really, that is not possible with the current interface; try yourself.)
Another advantage would be that you could use an iterator in a for-each-loop: Because a copy-able iterator would automatically also be iterable. See also this question. Right now, the main design reason to not allow this is because an Iterator which implements Iterable and Iterator<T> iterator() { return this; } would invalidate the iterator. By having a copy function, it is as simple as Iterator<T> iterator() { return copy(); } and it would not invalidate the original iterator. Thus there is no reason anymore to not allow this.
Is there any reason? Just to make it less complicated to implement it?
remove()is already annoying enough. In other languages (such as C#) it's possible for third-parties to enhance the behavior of pre-existing interfaces by exposing new methods on them that weren't put there by the author. (i.e. all LINQ operators) "copy" would be a fine candidate if such a facility were available in Java. Sadly there is not. – Kirk Woll Sep 30 '10 at 15:45