When LinkedHashMap.keySet() is called, will the order of the Set returned be the same as the order the keys were added in?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes. See: LinkedHashMap:
and from the HashMap#keySet documentation:
|
|||||||||||||||||
|
|
Yes. The exception is that when a key is reinserted, it appears in the order in which it was first inserted to the list. |
|||||
|