要將一個Set轉換為List,可以使用List的構造方法或者addAll()方法。
Set<Integer> set = new HashSet<>();
set.add(1);
set.add(2);
set.add(3);
List<Integer> list = new ArrayList<>(set);
在上述代碼中,我們創建了一個Set并將元素添加到Set中。然后我們使用List的構造方法將Set轉換為List。
Set<Integer> set = new HashSet<>();
set.add(1);
set.add(2);
set.add(3);
List<Integer> list = new ArrayList<>();
list.addAll(set);
在上述代碼中,我們創建了一個Set并將元素添加到Set中。然后我們創建一個空的List,并使用addAll()方法將Set中的元素添加到List中。
無論使用哪種方法,最終都會得到一個包含Set中元素的List。