import java.util.LinkedList; /* * Example of element() method */ public class LinkedListExample { public static void main(String[] args) { LinkedList<Integer> linkedList = new LinkedList<Integer>(); linkedList.add(200); linkedList.add(300); linkedList.add(10000); linkedList.add(5000); linkedList.add(2000); System.out.println("linkedList : " + linkedList + "\n"); /* * Retrieves, but does not remove, the head (first element) of this * list. */ Integer value = linkedList.element(); System.out.println(value); System.out.println("\nAfter calling element method : linkedList : " + linkedList + "\n"); } }
linkedList : [200, 300, 10000, 5000, 2000] 200 After calling element method : linkedList : [200, 300, 10000, 5000, 2000]
https://sites.google.com/site/javaee4321/java-collections/LinkedListDemoElement.zip?attredirects=0&d=1
See also:
No comments:
Post a Comment