문자열 뒤에 문자열을 추가하는 것 같은 수정하는 작업을 한다면
기존 참조하고 있던 곳에 추가하는 것이 아니라 추가된 문자열을 갖는 새로 String을 생성 후 참조를 바꾸는 형식이다.
fun main() {
val str = StringBuilder()
str.append(5) //5
str.append("hi") //5hi
str.deleteCharAt(0) //hi
str.delete(0, 1)
println(str)
}
'Kotlin > 문법' 카테고리의 다른 글
Kotlin - repeat (0) | 2024.02.19 |
---|---|
Kotlin - startsWith, andsWith (0) | 2024.02.19 |
Kotlin - 정규식 (1) | 2024.02.16 |
Kotlin - Scope Functions( let, run, with, apply, also ) (0) | 2024.02.14 |
Kotlin - reduce, fold (0) | 2024.02.13 |