阅读量:0
在Java中,我们可以使用以下几种方法将Set转换为List:
- 使用构造函数:
Set<String> set = new HashSet<>(); List<String> list = new ArrayList<>(set);
- 使用addAll()方法:
Set<String> set = new HashSet<>(); List<String> list = new ArrayList<>(); list.addAll(set);
- 使用Stream API:
Set<String> set = new HashSet<>(); List<String> list = set.stream().collect(Collectors.toList());
- 使用toArray()方法:
Set<String> set = new HashSet<>(); List<String> list = new ArrayList<>(Arrays.asList(set.toArray(new String[0])));
以上是几种常见的方法,根据具体需求选择适合的方法进行Set到List的转换。