1. toArray()
Java AbstractCollection 的 toArray() 方法用於生成與 AbstractCollection 相同元素的數組。本質上,它將 AbstractCollection 中的所有元素複製到一個新數組中。
用法:
Object[] arr = AbstractCollection.toArray()
參數:該方法不帶任何參數。
返回值:該方法返回一個包含與 AbstractCollection 類似的元素的數組。
以下示例程序旨在說明 AbstractCollection.toArray() 方法:
程序1:
// Java code to illustrate toArray()
import java.util.*;
public class AbstractCollectionDemo {
public static void main(String args[])
{
// Creating an empty AbstractCollection
AbstractCollection<String>
abs_col = new PriorityQueue<String>();
// Use add() method to add
// elements into the AbstractCollection
abs_col.add("Welcome");
abs_col.add("To");
abs_col.add("Geeks");
abs_col.add("For");
abs_col.add("Geeks");
// Displaying the AbstractCollection
System.out.println("The AbstractCollection:"
+ 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 AbstractCollection:[For, Geeks, To, Welcome, Geeks] The array is: For Geeks To Welcome Geeks
程序2:
// Java code to illustrate toArray()
import java.util.*;
public class AbstractCollectionDemo {
public static void main(String args[])
{
// Creating an empty AbstractCollection
AbstractCollection<Integer>
abs_col = new PriorityQueue<Integer>();
// Use add() method to add
// elements into the AbstractCollection
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 AbstractCollection
System.out.println("The AbstractCollection:"
+ 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 AbstractCollection:[5, 10, 25, 20, 15, 30] The array is: 5 10 25 20 15 30
2. toArray(arr[])
Java中AbstractCollection類的toArray(arr[])方法方法用於組成與AbstractCollection相同元素的數組。它以正確的順序返回一個包含此 AbstractCollection 中所有元素的數組;返回數組的運行時類型是指定數組的類型。如果 AbstractCollection 適合指定的數組,則在其中返回。否則,使用指定數組的運行時類型和此 AbstractCollection 的大小分配一個新數組。如果 AbstractCollection 適合指定數組並有剩餘空間(即,該數組的元素多於 AbstractCollection),則該元素在緊跟在 AbstractCollection 末尾的數組中設置為 null。 (僅當調用者知道 AbstractCollection 不包含任何空元素時,這對確定 AbstractCollection 的長度很有用。)
用法:
Object[] arr1 = AbstractCollection.toArray(arr[])
參數:該方法接受一個參數 arr[],如果它足夠大,則該參數是要存儲 AbstractCollection 元素的數組;否則,將為此目的分配相同運行時類型的新數組。
返回值:該方法返回一個包含與 AbstractCollection 類似的元素的數組。
異常:該方法可能會拋出兩種類型的異常:
- 數組存儲異常:當提到的數組是不同類型並且無法與 AbstractCollection 中提到的元素進行比較時。
- NullPointerException : 如果數組為 Null,則拋出此異常。
以下示例程序旨在說明 AbstractCollection.toArray(arr[]) 方法的用法。
程序1:當數組的大小為 AbstractCollection 時
// Java code to illustrate toArray(arr[])
import java.util.*;
public class AbstractCollectionDemo {
public static void main(String args[])
{
// Creating an empty AbstractCollection
AbstractCollection<String>
abs_col = new PriorityQueue<String>();
// Use add() method to add
// elements into the AbstractCollection
abs_col.add("Welcome");
abs_col.add("To");
abs_col.add("Geeks");
abs_col.add("For");
abs_col.add("Geeks");
// Displaying the AbstractCollection
System.out.println("The AbstractCollection:"
+ abs_col);
// Creating the array and using toArray()
String[] arr = new String[5];
arr = abs_col.toArray(arr);
// Displaying arr
System.out.println("The arr[] is:");
for (int j = 0; j < arr.length; j++)
System.out.println(arr[j]);
}
}
The AbstractCollection:[For, Geeks, To, Welcome, Geeks] The arr[] is: For Geeks To Welcome Geeks
程序2:當數組小於 AbstractCollection 的大小時
// Java code to illustrate toArray(arr[])
import java.util.*;
public class AbstractCollectionDemo {
public static void main(String args[])
{
// Creating an empty AbstractCollection
AbstractCollection<String>
abs_col = new PriorityQueue<String>();
// Use add() method to add
// elements into the AbstractCollection
abs_col.add("Welcome");
abs_col.add("To");
abs_col.add("Geeks");
abs_col.add("For");
abs_col.add("Geeks");
// Displaying the AbstractCollection
System.out.println("The AbstractCollection:"
+ abs_col);
// Creating the array and using toArray()
String[] arr = new String[1];
arr = abs_col.toArray(arr);
// Displaying arr
System.out.println("The arr[] is:");
for (int j = 0; j < arr.length; j++)
System.out.println(arr[j]);
}
}
The AbstractCollection:[For, Geeks, To, Welcome, Geeks] The arr[] is: For Geeks To Welcome Geeks
程序3:當數組大於 AbstractCollection 的大小時
// Java code to illustrate toArray(arr[])
import java.util.*;
public class AbstractCollectionDemo {
public static void main(String args[])
{
// Creating an empty AbstractCollection
AbstractCollection<String>
abs_col = new PriorityQueue<String>();
// Use add() method to add
// elements into the AbstractCollection
abs_col.add("Welcome");
abs_col.add("To");
abs_col.add("Geeks");
abs_col.add("For");
abs_col.add("Geeks");
// Displaying the AbstractCollection
System.out.println("The AbstractCollection:"
+ abs_col);
// Creating the array and using toArray()
String[] arr = new String[10];
arr = abs_col.toArray(arr);
// Displaying arr
System.out.println("The arr[] is:");
for (int j = 0; j < arr.length; j++)
System.out.println(arr[j]);
}
}
The AbstractCollection:[For, Geeks, To, Welcome, Geeks] The arr[] is: For Geeks To Welcome Geeks null null null null null
程序4:演示 NullPointerException
// Java code to illustrate toArray(arr[])
import java.util.*;
public class AbstractCollectionDemo {
public static void main(String args[])
{
// Creating an empty AbstractCollection
AbstractCollection<String>
abs_col = new PriorityQueue<String>();
// Use add() method to add
// elements into the AbstractCollection
abs_col.add("Welcome");
abs_col.add("To");
abs_col.add("Geeks");
abs_col.add("For");
abs_col.add("Geeks");
// Displaying the AbstractCollection
System.out.println("The AbstractCollection:"
+ abs_col);
try {
// Creating the array
String[] arr = null;
// using toArray()
// Since arr is null
// Hence exception will be thrown
arr = abs_col.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 AbstractCollection:[For, Geeks, To, Welcome, Geeks] Exception:java.lang.NullPointerException
相關用法
- Java AbstractCollection clear()用法及代碼示例
- Java AbstractCollection addAll()用法及代碼示例
- Java AbstractCollection add()用法及代碼示例
- Java AbstractCollection isEmpty()用法及代碼示例
- Java AbstractCollection size()用法及代碼示例
- Java AbstractCollection remove()用法及代碼示例
- Java AbstractCollection contains()用法及代碼示例
- Java AbstractCollection containsAll()用法及代碼示例
- Java AbstractCollection retainAll()用法及代碼示例
- Java AbstractCollection toString()用法及代碼示例
- Java AbstractCollection用法及代碼示例
- Java AbstractCollection removeAll()用法及代碼示例
- Java ArrayList toArray()用法及代碼示例
- Java Vector toArray()用法及代碼示例
- Java DelayQueue toArray()用法及代碼示例
- Java Guava Booleans.toArray()用法及代碼示例
- Java Guava Bytes.toArray()用法及代碼示例
- Java Guava Longs.toArray()用法及代碼示例
- Java Guava Chars.toArray()用法及代碼示例
- Java Guava Doubles.toArray()用法及代碼示例
- Java Guava Floats.toArray()用法及代碼示例
- Java Guava Shorts.toArray()用法及代碼示例
- Java LinkedTransferQueue toArray()用法及代碼示例
- Java SortedSet toArray()用法及代碼示例
注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 AbstractCollection toArray() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。