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 277 views
1 answer 174 views
174 views asked Oct 10, 2020 by avibootz
1 answer 114 views
1 answer 189 views
...