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

51,839 answers

573 users

How to iterate over map keys and values in Kotlin

3 Answers

0 votes
fun main() {
    val map = mapOf("key1" to "value1", "key2" to "value2", "key3" to "value3")

    for ((key, value) in map) {
        println("Key: $key, Value: $value")
    }
}
   
      
/*
run:

Key: key1, Value: value1
Key: key2, Value: value2
Key: key3, Value: value3
  
*/

 



answered Apr 18, 2025 by avibootz
0 votes
fun main() {
    val map = mapOf("key1" to "value1", "key2" to "value2", "key3" to "value3")

    map.forEach { key, value -> println("$key -> $value") }
}
   
      
/*
run:

key1 -> value1
key2 -> value2
key3 -> value3
  
*/

 



answered Apr 18, 2025 by avibootz
0 votes
fun main() {
    val map = mapOf("key1" to "value1", "key2" to "value2", "key3" to "value3")

    map.entries.forEach { println("${it.key} ${it.value}") }
}
   
      
/*
run:

key1 value1
key2 value2
key3 value3
  
*/

 



answered Apr 18, 2025 by avibootz

Related questions

1 answer 68 views
1 answer 69 views
2 answers 58 views
3 answers 81 views
3 answers 105 views
105 views asked Dec 14, 2024 by avibootz
...