可以通过在List的构造函数中传入Set来实现Set集合转List。具体代码示例如下:
import java.util.*;
public class Main {
public static void main(String[] args) {
Set<Integer> set = new HashSet<>();
set.add(1);
set.add(2);
set.add(3);
List<Integer> list = new ArrayList<>(set);
System.out.println("List elements: " + list);
}
}
在上面的代码中,首先创建了一个Set集合set
,然后使用ArrayList
的构造函数将set
中的元素转换成List集合list
。最后输出List集合中的元素。