Java的LinkedHashMap是否维护键的顺序?
调用 LinkedHashMap.keySet() 时,返回的 Set 的顺序是否与添加键的顺序相同?
When LinkedHashMap.keySet() is called, will the order of the Set returned be the same as the order the keys were added in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
请参阅:LinkedHashMap:
并来自 HashMap#keySet< /a> 文档:
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.