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


Java AbstractCollection toArray()用法及代码示例


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




相关用法


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