LinkedHashMap in Java

Advertisements

Prev Tutorial Next Tutorial

LinkedHashMap in Java

LinkedHashMap class are Implementer class of Map Interface which contains values based on the key. It implements the Map interface and extends HashMap class.

linkedhashmap

Points to Remember

  • LinkedHashMap contains only unique elements.
  • LinkedHashMap have one null key or can have multiple null values.
  • It is same as HashMap instead maintains insertion order.

Example of LinkedHashMap

import java.util.*;
class LinkedHashMapDemo
{
public static void main(String args[])
{  
   
  LinkedHashMap<Integer,String> tm=new LinkedHashMap<Integer,String>();  
  lhm.put(1,"Deo");  
  lhm.put(2,"zen");  
  lhm.put(3,"porter");  
  lhm.put(4,"piter");  
  
 for(Map.Entry m:lhm.entrySet())
 {  
   System.out.println(m.getKey()+" "+m.getValue());  
 }
 }  
}  

Output

1 Deo
2 zen  
3 porter  
4 piter

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements