当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java LinkedHashSet toArray(T[])用法及代码示例


Java中LinkedHashSet类的toArray(T [])方法方法用于生成与LinkedHashSet元素相同的元素的数组。它以正确的顺序返回包含此LinkedHashSet中所有元素的数组。返回数组的运行时类型是指定数组的运行时类型。如果LinkedHashSet适合指定的数组,则在其中返回它。否则,将使用指定数组的运行时类型和此LinkedHashSet的大小分配一个新数组。如果LinkedHashSet适合指定的数组并有剩余空间(即,该数组比LinkedHashSet包含更多的元素),则紧随LinkedHashSet结尾的数组中的元素将设置为null。 (仅当调用者知道LinkedHashSet不包含任何null元素时,这才对确定LinkedHashSet的长度很有用。)

用法:

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

参数:该方法接受一个参数arr [](如果该参数足够大),该参数是LinkedHashSet的元素要存储到的数组;否则,将为此分配一个具有相同运行时类型的新数组。


返回值:该方法返回一个包含与LinkedHashSet类似的元素的数组。

异常:该方法可能会引发两种类型的异常:

  • ArrayStoreException:当提到的数组具有不同的类型并且不能与LinkedHashSet中提到的元素进行比较时:
  • NullPointerException :如果数组为Null,则抛出此异常。

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

程序1:当数组的大小为LinkedHashSet时

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

程序2:当数组小于LinkedHashSet的大小时

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


相关用法


注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 LinkedHashSet toArray(T[]) method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。