📜  Java中的 TreeSet toArray() 方法示例

📅  最后修改于: 2022-05-13 01:55:13.733000             🧑  作者: Mango

Java中的 TreeSet toArray() 方法示例

Java TreeSettoArray()方法用于形成与 TreeSet 相同元素的数组。基本上,它将所有元素从 TreeSet 复制到一个新数组。

句法:

Object[] arr = TreeSet.toArray()

参数:该方法不带任何参数。

返回值:该方法返回一个包含类似于TreeSet的元素的数组。

下面的程序说明了 TreeSet.toArray() 方法:

方案一:

// Java code to illustrate toArray()
  
import java.util.*;
  
public class TreeSetDemo {
    public static void main(String args[])
    {
        // Creating an empty TreeSet
        TreeSet
            set = new TreeSet();
  
        // 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

方案二:

// Java code to illustrate toArray()
  
import java.util.*;
  
public class TreeSetDemo {
    public static void main(String args[])
    {
        // Creating an empty TreeSet
        TreeSet
            set = new TreeSet();
  
        // 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