如何交换地图中的两个键
有没有办法在Java中交换地图中的两个键?
前任。对于列表,有 Collections.swap(ArrayList,1,2);
Is there a way to swap two keys in a map in Java?
ex. for list there is Collections.swap(ArrayList,1,2);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用这一衬垫:
You can use this one liner:
如果您需要处理边界情况,例如其中一个键实际上不在地图中,您可以执行以下操作:
否则,请使用 Abdullah Jibaly 答案中的在线内容。
If you need to handle boundary cases, like one of the keys not actually being in the map, you can do something like this:
Otherwise, use the on-liner in Abdullah Jibaly's answer.