kotlin mapにある全てのデータを取得するサンプル

環境
Windows10 Home 64bit
Java 19.0.1
Kotlin 1.7.20-release-201

書式
val 変数名 =mapof('キー1′ to 値1,’キー2’ to 値2,…)
println(変数名)
変数名を指定してmapに全てのデータを取得します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
fun main() {
val res = mapOf('x' to 72, 'y' to 83, 'z' to 96)
println(res)
}
fun main() { val res = mapOf('x' to 72, 'y' to 83, 'z' to 96) println(res) }
fun main() {
   
   val res = mapOf('x' to 72, 'y' to 83, 'z' to 96)

    println(res) 
}

実行結果
{x=72, y=83, z=96}

Kotlin

Posted by arkgame