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,900 questions

51,831 answers

573 users

How to create a new key-value pair in a Map with Java

1 Answer

0 votes
import java.util.Map;
import java.util.Arrays;
import java.util.HashMap;

public class MyClass {
    public static void main(String args[]) {
        Map<String, Integer> map = new HashMap<>();
        
        map.put("java", 4);
        map.put("c#", 6);
        map.put("c", 2);
        
        Object[] arr = map.entrySet().toArray();
        System.out.println(Arrays.toString(arr));
        
        for (Map.Entry<String, Integer> entry:map.entrySet()) {
            System.out.println("key: " + entry.getKey() + " value: " + entry.getValue());
        }
    }
}
       
       
       
       
/*
run:
       
[c#=6, java=4, c=2]
key: c# value: 6
key: java value: 4
key: c value: 2
       
*/

 



answered Oct 7, 2023 by avibootz

Related questions

1 answer 101 views
2 answers 186 views
2 answers 212 views
2 answers 144 views
1 answer 122 views
1 answer 129 views
...