Collections • Lesson 21/100
Lists
Immutable lists in Kotlin
📚
Learn💻
Code❓
Quiz🏆
Practice⭐
Complete📚 Lý thuyết
**List** là collection phổ biến nhất để lưu trữ nhiều phần tử theo thứ tự.
**Immutable List (listOf):**
- Không thể thêm, xóa, sửa
- An toàn cho đa luồng
- Kotlin khuyến khích dùng
**Methods phổ biến:**
- size, isEmpty(), isNotEmpty()
- first(), last(), get(index), [index]
- contains(), indexOf()
- filter(), map(), forEach()