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


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


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

用法:

Object[] arr = HashSet.toArray()

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


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

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

示例1:

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

示例2:

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


相關用法


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