I have this loop:
for (Map.Entry<Integer, String> entry: collection.entrySet()) {
}
I'd like to compare entry and the next one after that. How would I do it?
|
I have this loop:
I'd like to compare |
|||
|
You do it on the previous one.
|
||||
|
|
|
As you loop over you could set a variable called oldEntry for example (initialized to null) and use that in the way you want.
|
|||||||
|
SortedMap. – Tom Hawtin - tackline Sep 17 '09 at 1:33