Click here to watch in Youtube : https://www.youtube.com/watch?v=QTr2QJWQLl0
LinkedListGetExample.java
import java.util.LinkedList; /* * Example of get(int index) method */ public class LinkedListGetExample { 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"); /* * Returns the element at the specified position in this list. */ Integer value = linkedList.get(3); System.out.println("Value in the 3rd index : " + value); } }
linkedList : [200, 300, 10000, 5000, 2000] Value in the 3rd index : 5000
https://sites.google.com/site/javaee4321/java-collections/LinkedListDemoGet.zip?attredirects=0&d=1
See also:
No comments:
Post a Comment