<String>类型的HashSet转换为<Long>类型的HashSet的最佳/有效方法是什么?

最佳答案

Set<Long> longSet = stringSet.stream().map(s-> Long.parseLong(s))
                             .collect(Collectors.toSet());


我没有尝试过,但应该可以

10-05 21:36