Syntax
Start Your Free Software Development Course
Web development, programming languages, Software testing & others
Map<key - data type, key - data type> object = new HashMap<key - data type, value - data type> ();
Map<key - data type, key - data type> object = new TreeMap<key - data type, value - data type> ();
Map<key - data type, key - data type> object = new LinkedHashMap<key - data type, value - data type> ();
Object.put (new data_type (key), value);
Object.remove (new data_type (key));
System.out.println(map_object);
for (Map.Entry temporary_object : main_object.entrySet()){ system.out.print(temporary_object.getKey() + "-" + temporary_object.getValue() ) }
import java.util.*;
public class JavaCollectionMap{ include variable, method, and object here… }
public static void main(String args[]){ write java collection map code here… }
Map<String,String > jcm = new HashMap<String,String >();
jcm.put("A", "HashMap");
System.out.println(jcm);
public class JavaCollectionMap{ public static void main(String args[]){ Map<String,String > jcm = new HashMap<String,String >(); jcm.put("A", "HashMap"); jcm.put("B", "TreeMap"); jcm.put("C", "LinkedHashMap"); System.out.println(jcm); }}
The following examples help you to understand insert, update, remove values from the collection map.
The java collection map with insert value example and output are below.
Code:
import java.util.*; class JavaCollectionMap{ public static void main(String args[]){ Map<Integer,String > jcm1 = new HashMap<Integer,String>(); jcm1.put (01, "HashMap"); jcm1.put (02, "TreeMap"); jcm1.put (03, "LinkedHashMap"); jcm1.put (04, "Map class"); jcm1.put (05, "Map interface"); System.out.println (jcm1); }}
Output:
Description
The collection map with iteration example and output is below.
Code:
import java.util.*; class JavaCollectionMap{ public static void main(String args[]){ Map<Integer, String > jcm1 = new HashMap<Integer, String>(); jcm1.put(01, "HashMap"); jcm1.put(02, "TreeMap"); jcm1.put(03, "LinkedHashMap"); jcm1.put(04, "Map class"); jcm1.put(05, "Map interface"); for(Map.Entry jcm:jcm1.entrySet()){ System.out.println(jcm.getKey()+" "+jcm.getValue()); } }}
Output:
Description
The collection map with change value example and output is below.
Code:
import java.util.*; class JavaCollectionMap{ public static void main(String args[]){ Map<Integer, String > jcm1 = new HashMap<Integer, String>(); jcm1.put(01, "HashMap"); jcm1.put(02, "TreeMap"); jcm1.put(03, "LinkedHashMap"); jcm1.put(04, "Map class"); jcm1.put(05, "Map interface"); System.out.println("original key and value of the Map"); for(Map.Entry jcm:jcm1.entrySet()){ System.out.println(jcm.getKey()+" "+jcm.getValue()); } jcm1.put(new Integer(01), "Java HashMap"); jcm1.put(new Integer(02), "Java TreeMap"); jcm1.put(new Integer(03), "java LinkedHashMap"); System.out.println("Updated key and value of the Map"); for(Map.Entry jcm:jcm1.entrySet()){ System.out.println(jcm.getKey()+" "+jcm.getValue()); } }}
Output:
Description
The collection map with delete value example and output is below.
Code:
import java.util.*; class JavaCollectionMap{ public static void main(String args[]){ Map<Integer, String > jcm1 = new HashMap<Integer, String>(); jcm1.put(01, "HashMap"); jcm1.put(02, "TreeMap"); jcm1.put(03, "LinkedHashMap"); jcm1.put(04, "Map class"); jcm1.put(05, "Map interface"); System.out.println("original key and value of the Map"); for(Map.Entry jcm:jcm1.entrySet()){ System.out.println(jcm.getKey()+" "+jcm.getValue()); } jcm1.remove(new Integer(04)); jcm1.remove(new Integer(05)); System.out.println("Deleted key and value of the Map"); for(Map.Entry jcm:jcm1.entrySet()){ System.out.println(jcm.getKey()+" "+jcm.getValue()); } }}
Output:
Description
The collection map with data type’s example and output is below.
Code:
import java.util.*; class JavaCollectionMap{ public static void main(String args[]){ Map<String, String> jcm = new HashMap<String, String>(); jcm.put ("A", "HashMap"); jcm.put ("B", "TreeMap"); jcm.put ("C", "LinkedHashMap"); System.out.println(jcm); Map<Integer, String > jcm1 = new HashMap<Integer, String>(); jcm1.put (01, "HashMap"); jcm1.put (02, "TreeMap"); jcm1.put (03, "LinkedHashMap"); System.out.println(jcm1); Map<Integer, Integer > jcm2 = new HashMap<Integer, Integer>(); jcm2.put (01, 71098223); jcm2.put (02, 89901232); jcm2.put (03, 98089921); System.out.println(jcm2); }}
Output:
Description
This is a guide to Java collection map. Here we discuss How does the Java collection map method work along with the examples and outputs. You may also have a look at the following articles to learn more –
The above is the detailed content of Java collection map. For more information, please follow other related articles on the PHP Chinese website!