Click here to watch in Youtube :
https://www.youtube.com/watch?v=ImgHoN_ESu0&list=UUhwKlOVR041tngjerWxVccw
LinkedHashMapExample.java
Output
https://www.youtube.com/watch?v=ImgHoN_ESu0&list=UUhwKlOVR041tngjerWxVccw
LinkedHashMapExample.java
import java.util.LinkedHashMap; /* * Example of LinkedHashMap() Constructor. */ public class LinkedHashMapExample { public static void main( String[] args ) { /* * Constructs an empty insertion-ordered LinkedHashMap instance with the * default initial capacity (16) and load factor (0.75). */ LinkedHashMap<Integer, String> linkedHashMap = new LinkedHashMap<Integer, String>(); linkedHashMap.put(1, "Apple"); linkedHashMap.put(3, "Cat"); linkedHashMap.put(2, "Ball"); System.out.println("linkedHashMap : " + linkedHashMap + "\n"); } }
linkedHashMap : {1=Apple, 3=Cat, 2=Ball}
https://sites.google.com/site/javaee4321/java-collections/LinkedHashMapDemoDefaultCons.zip?attredirects=0&d=1
See also:
No comments:
Post a Comment