JAVA - Example of Linked Hash Map (All Methods ) - Java2021 : Online Tutorials Hub

Java2021 : Online Tutorials Hub

JAVA | Advance Java | MySQL | Data Structure | Git | HTML | CSS | JS

Latest

Post Top Ad

Sunday, April 26, 2020

JAVA - Example of Linked Hash Map (All Methods )

Here is example of linked hash map and custom example.

package Practice;
import java.security.KeyStore;
import java.util.*;
public class LinkedHashMapExample {
    public static void main(String[] args)
    {
        LinkedHashMap l=new LinkedHashMap();
        l.put(null,null);
        l.put(null,null);//it takes only one null key
        l.put(1,"ravi");
        l.put(2,"kumar");
        l.put(3,"sagar");
        l.put(4,"Om");
        l.remove(4);
        System.out.print(l);
        System.out.println(l.get(2));
        l.clear();
        System.out.println(l.values());
        System.out.println(l.keySet());
        Map map =new LinkedHashMap();
        Home home=new Home("Ravi",23,25000,"Delhi");
        Home home1=new Home("Ritu",24,21000,"Goa");
        Home home2=new Home("Om",28,22000,"Mumbai");
        Home home3=new Home("Sweta",28,24000,"Chennai");
        map.put(1,home);
        map.put(2,home1);
        map.put(3,home2);
        map.put(4,home3);
        System.out.println(map.get(4));
    }
}
class Home{
    public String name;
    int age;
    public String address;
    int income;
    public Home(String name, int age,int income,String address){
        this.name=name;
        this.age=age;
        this.income=income;
        this.address=address;
    }
}


Sorting and Searching Programs
Start with your Choice
-Important Programs for Freshers
Learn Pattern Programs 
Click to learn Array Programs
Click to Learn MySQL 
for any complaint regarding my Blog please visit contact us page and write what problem you have!
Learn with us | HTML | CSS | JS | Bootstrap | JAVA | ADV JAVA | MySQL | GIT



No comments:

Pages