Java LinkedList toArray()方法
java.util.LinkedList.toArray(T[] a) 方法返回一个数组,该数组包含按正确顺序排列的所有元素(从第一个元素到最后一个元素);返回数组的运行时类型是指定数组的运行时类型。
1 语法
public <T> T[] toArray(T[] a)
2 参数
a:需要用来存储LinkedList元素的指定类型数组。
3 返回值
返回包含列表元素的数组。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.LinkedList.toArray(T[] a)方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String[] args) {
// create a LinkedList
LinkedList list = new LinkedList();
// add some elements
list.add("Hello");
list.add(2);
list.add("Chocolate");
list.add("10");
// print the list
System.out.println("LinkedList:" + list);
// create an array and copy the list to it
Object[] array = list.toArray(new Object[4]);
// print the array
for (int i = 0; i < list.size(); i++) {
System.out.println("Array:" + array[i]);
}
}
}
输出结果为:
LinkedList:[Hello, 2, Chocolate, 10]
Array:Hello
Array:2
Array:Chocolate
Array:10
热门文章
优秀文章