작성
·
145
0
// 조건문
// if else
// when
fun main() {
val testlist = mutableMapOf<String, Int>()
testlist["a"] = 10
testlist["b"] = 50
testlist["c"] = 60
testlist["d"] = 100
testlist["e"] = 70
testlist["f"] = 30
// 50점이상 구하기
println(testlist.keys::class.java.simpleName)
for (i in testlist){
println(i.key::class.java.simpleName)
}
}
위 코드처럼 작성 후 타입을 비교하였을 때 두가지의 타입이 다르게 나와있는데 그 이유를 모르겠습니다