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