Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,911 questions

51,843 answers

573 users

How to add value to HashMap elements to ArrayList in Java

1 Answer

0 votes
import java.util.ArrayList;
import java.util.Map.Entry;
import java.util.HashMap;

public class MyClass {
    public static void main(String args[]) {
        HashMap<String, Integer> hashmap = new HashMap<>();
  
        hashmap.put("java", 3);
        hashmap.put("c++", 4);
        hashmap.put("c", 1);
        hashmap.put("swift", 5);
        hashmap.put("python", 2);
        
        ArrayList<Entry<String, Integer>> al = new ArrayList<>();
        
        al.addAll(hashmap.entrySet());
        
        System.out.println(al);
    }
}
  
  
  
  
/*
run:
  
[c++=4, python=2, java=3, c=1, swift=5]
  
*/

 

 



answered Oct 11, 2020 by avibootz

Related questions

1 answer 201 views
1 answer 147 views
147 views asked Oct 10, 2020 by avibootz
1 answer 94 views
1 answer 169 views
...