有没有一种方法可以按照传递的顺序从集合中恢复对象?
我需要按照传递到集合中的相同顺序恢复 java Set 集合接口的元素。
在java中怎么可能
I need to recover the elements of a java Set collection interface in the same order they were passed into the set.
How is it possible in java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
LinkedHashSet
< 怎么样? /a>?How about
LinkedHashSet
?您可以使用上面的 LinkedhashSet 示例。
You can use LinkedhashSet above is the example.