是否有一个简单的方法可以从枚举对象创建集合?
我有一个枚举对象,我想创建一个包含枚举项的集合对象。
是否有任何 Java 函数可以做到这一点,而无需手动迭代枚举?与Collections.enumeration
方法相反的东西吗?
I have an Enumeration object and I want to create a Collection object containing the items of the enumeration.
Is there any Java function to do this without manually iterating over the enumeration? Something like the reverse of the Collections.enumeration
method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实上,有
Collections.list(enumeration)
(还有
EnumerationUtils.toList(enumeration)
来自 commons-collections。)In fact, there is
Collections.list(enumeration)
(There is also
EnumerationUtils.toList(enumeration)
from commons-collections.)标准 API 中没有任何内容,因为枚举和迭代器不被视为 C++ STL 中的一流 API 实体。您应该在创建后立即使用它们(最好是通过“增强的 for 循环”隐式使用它们)。Collections.list()
There's nothing in the standard API, because Enumerations and Iterators are not considered first-class API entities as in the C++ STL. You're supposed to consume them immediately after creation (ideally implicitly via the "enhanced for loop").Collections.list()