📜  使用示例在Java中设置 toArray() 方法

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

使用示例在Java中设置 toArray() 方法

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

Object[] toArray()

参数:该方法采用可选参数。如果我们提供我们想要的对象数组的类型,我们可以将它作为参数传递。例如: set.toArray(new Integer[0]) 返回一个 Integer 类型的数组,我们也可以这样做 set.toArray(new Integer[size]) 其中 size 是结果数组的大小。以前一种方式进行操作是因为所需的大小是在内部分配的。
返回值:该方法返回一个包含与Set类似的元素的数组。
下面的程序说明了 Set.toArray() 方法:
方案一:

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


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


输出:
The Set: [Geeks, For, Welcome, To]
The array is:
Geeks
For
Welcome
To

方案二:

Java

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

参考:https: Java/util/Set.html#toArray()