gpt4 book ai didi

java - 如何删除 java.util.Set 中的最后一个元素?

转载 作者:搜寻专家 更新时间:2023-10-31 08:07:29 24 4
gpt4 key购买 nike

我想删除这个集合的每一个元素。

        Set<String> listOfSources = new TreeSet<String>();
for(Route route:listOfRoutes){
Set<Stop> stops = routeStopsService.getStops(route);
for(Stop stop:stops)
listOfSources.add(stop.getStopName());
}

这里我想从 listOfSources 中删除最后一个元素。

最佳答案

您需要转换回 TreeSet,因为 Set 没有任何顺序。

listOfSources.remove( ((TreeSet) listOfSources).last() );

关于java - 如何删除 java.util.Set 中的最后一个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8772248/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com