我只是问自己是否有更方便的方法来创建SortedSet,例如。一个TreeSet,而不是我目前在测试中使用的一个liner:
SortedSet
TreeSet
new TreeSet<>(Set.of(element1, element2));
类似于SortedSet.of(...)的东西,可能来自Apache Commons或类似的东西?
SortedSet.of(...)
j8yoct9x1#
你可以使用像Guava这样的库:
Guava
import com.google.common.collect.Sets; import java.util.SortedSet; SortedSet<Integer> sortedSet = Sets.newTreeSet(ImmutableSet.of(1, 2, 3));
1条答案
按热度按时间j8yoct9x1#
你可以使用像
Guava
这样的库: