Return | Method | Summary |
---|---|---|
Object[] | toArray() | Returns an array containing all of the elements in this list in proper sequence (from first to last element). |
<T> T[] | toArray(T[] a) | Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. |
import java.util.Arrays;
import java.util.LinkedList;
public class Main{
public static void main(String args[]) {
LinkedList<String> ll = new LinkedList<String>();
ll.add("A");
ll.add("java2s.com");
ll.add("B");
ll.add("C");
ll.add("java2s.com");
Object[] objs = ll.toArray();
System.out.println(Arrays.toString(objs));
String[] strs = ll.toArray(new String[ll.size()]);
System.out.println(Arrays.toString(strs));
}
}
The output:
[A, java2s.com, B, C, java2s.com]
[A, java2s.com, B, C, java2s.com]
java2s.com | Contact Us | Privacy Policy |
Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
All other trademarks are property of their respective owners. |