Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

java add to map

HashMap<String, String> map = new HashMap<>();
map.put("key", "value");
Comment

Java Hashmap Add Elements

import java.util.*;  
public class hashmapeg3{  
 public static void main(String args[]){  
   HashMap<Integer,String> map=new HashMap<Integer,String>();//Creating HashMap    
   
   System.out.println("Initial HashMap: " + map);
   
   map.put(1,"Cat");  //Put elements in Map  
   map.put(2,"Dog");    
   map.put(3,"Markhor");   
   map.put(4,"Peacock");   
       
   System.out.println("HashMap after put(): ");  
   for(Map.Entry m : map.entrySet()){    
    System.out.println(m.getKey()+" "+m.getValue());    
   }  
}  
}
Comment

Java Add elements to a HashMap

import java.util.HashMap;

class Main {
  public static void main(String[] args) {

    // create a hashmap
    HashMap<String, Integer> numbers = new HashMap<>();

    System.out.println("Initial HashMap: " + numbers);
    // put() method to add elements
    numbers.put("One", 1);
    numbers.put("Two", 2);
    numbers.put("Three", 3);
    System.out.println("HashMap after put(): " + numbers);
  }
}
Comment

Add Elements in java map

// Java program to demonstrate
// the working of Map interface

import java.util.*;
class Main {
	public static void main(String args[])
	{
		// Default Initialization of a
		// Map
		Map<Integer, String> hashmap1 = new HashMap<>();

		// Initialization of a Map
		// using Generics
		Map<Integer, String> hashmap2= new HashMap<Integer, String>();

		// Inserting the Elements
		hashmap1.put(1, "Apple");
		hashmap1.put(2, "Banana");
		hashmap1.put(3, "Mango");

		hashmap2.put(new Integer(1), "Mango");
		hashmap2.put(new Integer(2), "Apple");
		hashmap2.put(new Integer(3), "Banana");

		System.out.println(hashmap1 +"
");
		System.out.println(hashmap2);
	}
}
Comment

PREVIOUS NEXT
Code Example
Java :: java string reduce 
Java :: java run jnlp 
Java :: split in java 
Java :: can a java class have more than 108 constructors 
Java :: random int between two values 
Java :: Compare two csv files using java 
Java :: java regular expressions 
Java :: transparent border of jtextfield in java 
Java :: java empty array list vs null elements 
Java :: all possible substrings of a string java of specific length 
Java :: The superclass "jakarta.servlet.http.HttpServlet" was not found on the Java Build Path 
Java :: java hashmap increase value by 1 
Java :: double if statement java 
Java :: click on recyclerview item android animation 
Java :: what is a package in java 
Java :: Java 2-dimensional Array 
Java :: java confirmation dialog 
Java :: java store data 
Java :: User input (scanner) 
Java :: java complex numbers 
Java :: Java Access Array Elements 
Java :: java streams 
Java :: Java Creating a HashSet 
Java :: switch in java 
Java :: array to array list java 
Java :: using super in java 
Java :: How to remove an element from a Java List? 
Java :: check if object is empty java 8 
Java :: Load array of strings from console 
Java :: android activity set action bar options 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =