是否有一个简单的方法可以从枚举对象创建集合?

发布于 2024-10-09 01:45:23 字数 120 浏览 2 评论 0原文

我有一个枚举对象,我想创建一个包含枚举项的集合对象。

是否有任何 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那支青花 2024-10-16 01:45:23

标准 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()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文