728x90
반응형
1. ArrayList<>
fun main() {
val testList = ArrayList<String>()
testList.add("a")
testList.add("b")
testList.add("c")
println(testList)
}
----------------------------
[a,b,c]
- add로 리스트에 값을 추가해줌
2. listOf()
fun main() {
val testList2 = listOf("a", "b", "c")
println(testList2)
}
------------------------
[a,b,c]
- 리스트 안에 있는 값을 바로 써줌
3. mutableListOf<>
fun main() {
val testList3 = mutableListOf<String>("a", "b", "c")
println(testList3)
}
--------------------
[a,b,c]
- 2와 비슷하지만, 문자를 더하거나 뺄 때는 mutableListOf 를 사용함
728x90
반응형
'Kotlin' 카테고리의 다른 글
[Kotlin] Kotlin in Action 1장. 코틀린이란 무엇이며, 왜 필요한가? (0) | 2023.03.09 |
---|---|
[Kotlin] 1. 코틀린 기초 (0) | 2022.03.04 |
[Kotlin] invoke 란? (0) | 2022.03.03 |