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 Sets 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* 值的好方法?
基础教程推荐
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- Struts2 URL 无法访问 2022-01-01
