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


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


Java中HashSet類的toArray(T [])方法方法用於生成與HashSet元素相同的元素的數組。它以正確的順序返回包含此HashSet中所有元素的數組。返回數組的運行時類型是指定數組的運行時類型。如果HashSet適合指定的數組,則在其中返回它。否則,將使用指定數組的運行時類型和此HashSet的大小分配一個新數組。如果HashSet適合指定的數組並有剩餘空間(即,數組比HashSet包含更多的元素),則緊隨HashSet結束的數組中的元素設置為null。 (僅當調用者知道HashSet不包含任何null元素時,這才對確定HashSet的長度很有用。)

用法:

public <T> T[] toArray(T[] a)

參數:該方法接受一個參數arr [](如果該參數足夠大),該參數是HashSet的元素要存儲到的數組;否則,將為此分配一個具有相同運行時類型的新數組。


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

異常:該方法可能會引發兩種類型的異常:

  • ArrayStoreException:當提到的數組具有不同的類型並且無法與HashSet中提到的元素進行比較時。
  • NullPointerException :如果數組為Null,則拋出此異常。

以下示例程序旨在說明HashSet.toArray(arr [])方法的用法。

程序1:當數組的大小為HashSet時

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

程序2:當數組小於HashSet的大小時

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

程序3:當數組大於HashSet的大小時

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

程序4:演示NullPointerException

// Java code to illustrate toArray(arr[]) 
  
import java.util.*; 
  
public class HashSetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty HashSet 
        HashSet<String> 
            hashSet = new HashSet<String>(); 
  
        // Use add() method to add 
        // elements into the HashSet 
        hashSet.add("Welcome"); 
        hashSet.add("To"); 
        hashSet.add("Geeks"); 
        hashSet.add("For"); 
        hashSet.add("Geeks"); 
  
        // Displaying the HashSet 
        System.out.println("The HashSet:"
                           + hashSet); 
  
        try { 
            // Creating the array 
            String[] arr = null; 
            // using toArray() 
            // Since arr is null 
            // Hence exception will be thrown 
            arr = hashSet.toArray(arr); 
  
            // Displaying arr 
            System.out.println("The arr[] is:"); 
            for (int j = 0; j < arr.length; j++) 
                System.out.println(arr[j]); 
        } 
        catch (Exception e) { 
            System.out.println("Exception:" + e); 
        } 
    } 
}
輸出:
The HashSet:[Geeks, For, Welcome, To]
Exception:java.lang.NullPointerException


相關用法


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