kotlin mutableMapの値を追加する方法
環境
Windows10 Home 64bit
Java 19.0.1
Kotlin 1.7.20-release-201
構文
map名.put = ( key , 値 )
map名[key] = 値
mutableMapの値を追加するには、上記の構文を利用します。
使用例
fun main() { val tt = mutableMapOf('s' to 1, 't' to 2, 'u' to 3) tt += 'g' to 4 println(tt) }
実行結果
{s=1, t=2, u=3, g=4}