Good way to get *any* value from a Java Set?(从 Java Set 中获取 *any* 值的好方法?)
问题描述
给定一个简单的 Set<T>
,从 Set
获取 any 值的好方法是什么(快速,几行代码)代码>?
Given a simple Set<T>
, what is a good way (fast, few lines of code) to get any value from the Set
?
有了List
,很简单:
List<T> things = ...;
return things.get(0);
但是,对于 Set
,没有 .get(...)
方法,因为 Set
没有顺序.
But, with a Set
, there is no .get(...)
method because Set
s are not ordered.
推荐答案
一个 Set
是一个 Iterable
,所以迭代到第一个元素是可行的:
A Set<T>
is an Iterable<T>
, so iterating to the first element works:
Set<T> things = ...;
return things.iterator().next();
Guava 有 一种方法 来做到这一点,虽然上面的代码片段 可能更好.
Guava has a method to do this, though the above snippet is likely better.
这篇关于从 Java Set 中获取 *any* 值的好方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 Java Set 中获取 *any* 值的好方法?
基础教程推荐
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01