Java中的 LinkedHashSet toArray(T[]) 方法示例
Java中LinkedHashSet类的toArray(T[])方法方法用于组成与LinkedHashSet相同元素的数组。它以正确的顺序返回一个包含此 LinkedHashSet 中所有元素的数组;返回数组的运行时类型是指定数组的类型。如果 LinkedHashSet 适合指定的数组,则在其中返回。否则,使用指定数组的运行时类型和此 LinkedHashSet 的大小分配一个新数组。
如果 LinkedHashSet 适合指定的数组并有剩余空间(即,数组的元素比 LinkedHashSet 多),则数组中紧跟 LinkedHashSet 末尾的元素设置为 null。 (仅当调用者知道 LinkedHashSet 不包含任何空元素时,这在确定 LinkedHashSet 的长度时才有用。)
句法:
public T[] toArray(T[] a)
参数:该方法接受一个参数arr[] ,如果它足够大,则该参数是要存储 LinkedHashSet 元素的数组;否则,将为此目的分配相同运行时类型的新数组。
返回值:该方法返回一个包含类似于LinkedHashSet的元素的数组。
异常:该方法可能会抛出两种类型的异常:
- ArrayStoreException :当提到的数组是不同的类型并且无法与 LinkedHashSet 中提到的元素进行比较时。
- NullPointerException :如果数组为 Null,则抛出此异常。
下面的程序说明了 LinkedHashSet.toArray(arr[]) 方法的工作。
方案一:当数组大小为 LinkedHashSet 时
// Java code to illustrate toArray(arr[])
import java.util.*;
public class LinkedHashSetDemo {
public static void main(String args[])
{
// Creating an empty LinkedHashSet
LinkedHashSet
set = new LinkedHashSet();
// Use add() method to add
// elements into the LinkedHashSet
set.add("Welcome");
set.add("To");
set.add("Geeks");
set.add("For");
set.add("Geeks");
// Displaying the LinkedHashSet
System.out.println("The LinkedHashSet: "
+ set);
// Creating the array and using toArray()
String[] arr = new String[5];
arr = set.toArray(arr);
// Displaying arr
System.out.println("The arr[] is:");
for (int j = 0; j < arr.length; j++)
System.out.println(arr[j]);
}
}
The LinkedHashSet: [Welcome, To, Geeks, For]
The arr[] is:
Welcome
To
Geeks
For
null
方案二:当数组小于 LinkedHashSet 的大小时
// Java code to illustrate toArray(arr[])
import java.util.*;
public class LinkedHashSetDemo {
public static void main(String args[])
{
// Creating an empty LinkedHashSet
LinkedHashSet
set = new LinkedHashSet();
// Use add() method to add
// elements into the LinkedHashSet
set.add("Welcome");
set.add("To");
set.add("Geeks");
set.add("For");
set.add("Geeks");
// Displaying the LinkedHashSet
System.out.println("The LinkedHashSet: "
+ set);
// Creating the array and using toArray()
String[] arr = new String[1];
arr = set.toArray(arr);
// Displaying arr
System.out.println("The arr[] is:");
for (int j = 0; j < arr.length; j++)
System.out.println(arr[j]);
}
}
The LinkedHashSet: [Welcome, To, Geeks, For]
The arr[] is:
Welcome
To
Geeks
For
方案 3:当数组大于 LinkedHashSet 的大小时
// Java code to illustrate toArray(arr[])
import java.util.*;
public class LinkedHashSetDemo {
public static void main(String args[])
{
// Creating an empty LinkedHashSet
LinkedHashSet
set = new LinkedHashSet();
// Use add() method to add
// elements into the LinkedHashSet
set.add("Welcome");
set.add("To");
set.add("Geeks");
set.add("For");
set.add("Geeks");
// Displaying the LinkedHashSet
System.out.println("The LinkedHashSet: "
+ set);
// Creating the array and using toArray()
String[] arr = new String[10];
arr = set.toArray(arr);
// Displaying arr
System.out.println("The arr[] is:");
for (int j = 0; j < arr.length; j++)
System.out.println(arr[j]);
}
}
The LinkedHashSet: [Welcome, To, Geeks, For]
The arr[] is:
Welcome
To
Geeks
For
null
null
null
null
null
null
程序4:演示NullPointerException
// Java code to illustrate toArray(arr[])
import java.util.*;
public class LinkedHashSetDemo {
public static void main(String args[])
{
// Creating an empty LinkedHashSet
LinkedHashSet
set = new LinkedHashSet();
// Use add() method to add
// elements into the LinkedHashSet
set.add("Welcome");
set.add("To");
set.add("Geeks");
set.add("For");
set.add("Geeks");
// Displaying the LinkedHashSet
System.out.println("The LinkedHashSet: "
+ set);
try {
// Creating the array
String[] arr = null;
// using toArray()
// Since arr is null
// Hence exception will be thrown
arr = set.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 LinkedHashSet: [Welcome, To, Geeks, For]
Exception: java.lang.NullPointerException