Notice
Recent Posts
Recent Comments
Link
ยซ   2025/08   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31
Tags
more
Archives
Today
Total
๊ด€๋ฆฌ ๋ฉ”๋‰ด

๐ŸŒฑ dreaming DiNO

[Kotlin] ์—์„œ ArrayList.removeRange ์“ฐ๊ธฐ ๋ณธ๋ฌธ

Android

[Kotlin] ์—์„œ ArrayList.removeRange ์“ฐ๊ธฐ

MK_____ 2022. 12. 6. 10:17
fun main(args: Array<String>) {
   var intList = ArrayList<Int>()
   intList.add(1)
   intList.add(2)
   intList.add(3)
   intList.add(4)
   intList.add(5)
   System.out.println("intList => $intList") // [1, 2, 3, 4, 5]

   intList.subList(0, 2).clear();
   System.out.println("after => $intList") //  [3, 4, 5]
}