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


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


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

用法:

Object[] arr1 = Stack.toArray(arr[])

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


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

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

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

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

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

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

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

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

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

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

程序4:演示NullPointerException

// Java code to illustrate toArray(arr[]) 
  
import java.util.*; 
  
public class StackDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Stack 
        Stack<String> stack = new Stack<String>(); 
  
        // Use add() method to add elements into the Stack 
        stack.add("Welcome"); 
        stack.add("To"); 
        stack.add("Geeks"); 
        stack.add("For"); 
        stack.add("Geeks"); 
  
        // Displaying the Stack 
        System.out.println("The Stack:" + stack); 
  
        try { 
            // Creating the array 
            String[] arr = null; 
            // using toArray() 
            // Since arr is null 
            // Hence exception will be thrown 
            arr = stack.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 Stack:[Welcome, To, Geeks, For, Geeks]
Exception:java.lang.NullPointerException


相關用法


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