當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java TreeSet toArray()用法及代碼示例


Java TreeSet的toArray()方法用於生成與TreeSet相同的元素的數組。本質上,它將所有元素從TreeSet複製到新數組。

用法:

Object[] arr = TreeSet.toArray()

參數:該方法不帶任何參數。


返回值:該方法返回一個包含與TreeSet類似的元素的數組。

以下示例程序旨在說明TreeSet.toArray()方法:

示例1:

// Java code to illustrate toArray() 
  
import java.util.*; 
  
public class TreeSetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty TreeSet 
        TreeSet<String> 
            set = new TreeSet<String>(); 
  
        // Use add() method to add 
        // elements into the TreeSet 
        set.add("Welcome"); 
        set.add("To"); 
        set.add("Geeks"); 
        set.add("For"); 
        set.add("Geeks"); 
  
        // Displaying the TreeSet 
        System.out.println("The TreeSet: "
                           + set); 
  
        // Creating the array and using toArray() 
        Object[] arr = set.toArray(); 
  
        System.out.println("The array is:"); 
        for (int j = 0; j < arr.length; j++) 
            System.out.println(arr[j]); 
    } 
}
輸出:
The TreeSet: [For, Geeks, To, Welcome]
The array is:
For
Geeks
To
Welcome

示例2:

// Java code to illustrate toArray() 
  
import java.util.*; 
  
public class TreeSetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty TreeSet 
        TreeSet<Integer> 
            set = new TreeSet<Integer>(); 
  
        // Use add() method to add 
        // elements into the TreeSet 
        set.add(10); 
        set.add(15); 
        set.add(30); 
        set.add(20); 
        set.add(5); 
        set.add(25); 
  
        // Displaying the TreeSet 
        System.out.println("The TreeSet: "
                           + set); 
  
        // Creating the array and using toArray() 
        Object[] arr = set.toArray(); 
  
        System.out.println("The array is:"); 
        for (int j = 0; j < arr.length; j++) 
            System.out.println(arr[j]); 
    } 
}
輸出:
The TreeSet: [5, 10, 15, 20, 25, 30]
The array is:
5
10
15
20
25
30


相關用法


注:本文由純淨天空篩選整理自Code_r大神的英文原創作品 TreeSet toArray() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。