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 a map 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 Dec 14, 2024 by avibootz
0 votes
fun main() {
    val map = mapOf("key1" to "value1", "key2" to "value2", "key3" to "value3")

	map.forEach { (key, value) ->
    	println("Key: $key, Value: $value")
	}
}

 
 
/*
run:

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

 



answered Dec 14, 2024 by avibootz
0 votes
fun main() {
    val map = mapOf("key1" to "value1", "key2" to "value2", "key3" to "value3")

	for (entry in map.entries) {
    	println("Key: ${entry.key}, Value: ${entry.value}")
	}
}

 
 
/*
run:

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

 



answered Dec 14, 2024 by avibootz

Related questions

3 answers 132 views
1 answer 66 views
2 answers 58 views
1 answer 69 views
1 answer 70 views
3 answers 81 views
...