Java中的 LinkedHashSet toArray() 方法示例
Java LinkedHashSet的toArray()方法用于形成与 LinkedHashSet 相同元素的数组。基本上,它将 LinkedHashSet 中的所有元素复制到一个新数组中。
句法:
Object[] arr = LinkedHashSet.toArray()
参数:该方法不带任何参数。
返回值:该方法返回一个包含类似于LinkedHashSet的元素的数组。
下面的程序说明了 LinkedHashSet.toArray() 方法:
方案一:
// Java code to illustrate toArray()
import java.util.*;
public class LinkedHashSetDemo {
public static void main(String args[])
{
// Creating an empty LinkedHashSet
LinkedHashSet
set = new LinkedHashSet();
// Use add() method to add
// elements into the LinkedHashSet
set.add("Welcome");
set.add("To");
set.add("Geeks");
set.add("For");
set.add("Geeks");
// Displaying the LinkedHashSet
System.out.println("The LinkedHashSet: "
+ 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 LinkedHashSet: [Welcome, To, Geeks, For]
The array is:
Welcome
To
Geeks
For
方案二:
// Java code to illustrate toArray()
import java.util.*;
public class LinkedHashSetDemo {
public static void main(String args[])
{
// Creating an empty LinkedHashSet
LinkedHashSet
set = new LinkedHashSet();
// Use add() method to add
// elements into the LinkedHashSet
set.add(10);
set.add(15);
set.add(30);
set.add(20);
set.add(5);
set.add(25);
// Displaying the LinkedHashSet
System.out.println("The LinkedHashSet: "
+ 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 LinkedHashSet: [10, 15, 30, 20, 5, 25]
The array is:
10
15
30
20
5
25