Kotlin Collections and Operators
Kotlin Collections, functional operators (map, filter, reduce), Sequences, higher-order functions, operator overloading
20 面接問題·
Mid-Level
1What is the difference between List and MutableList in Kotlin?
1
What is the difference between List and MutableList in Kotlin?
回答
List is a read-only interface that doesn't allow modifying the collection after creation. MutableList extends List and adds modification methods like add(), remove(), clear(). List guarantees structural immutability.
2How do you create an immutable list in Kotlin?
2
How do you create an immutable list in Kotlin?
回答
Use listOf() to create an immutable list. This function returns a read-only List<T>. For a mutable list, use mutableListOf() or arrayListOf().
3What is the map() operator used for on a collection?
3
What is the map() operator used for on a collection?
回答
map() transforms each element of the collection by applying a function, and returns a new list with the transformed elements. For example: listOf(1,2,3).map { it * 2 } returns [2,4,6].
4
What is the filter() operator used for?
5
What is the difference between map() and flatMap()?
+17 面接問題
その他のAndroid面接トピック
Android Fundamentals
Junior
24問Android UI and Resources
Junior
30問Android Lifecycle
Junior
30問Android Navigation
Junior
26問Android Data Management
Junior
29問Android Networking
Junior
29問Android Testing
Junior
28問Android Gradle
Junior
26問Kotlin Language Essentials for Android
Junior
24問Room Database
Mid-Level
25問Background Work
Mid-Level
18問Jetpack Compose
Mid-Level
28問Permissions and Device Features
Mid-Level
21問Firebase for Android
Mid-Level
23問Android MVVM Architecture
Mid-Level
18問Advanced Android Networking
Mid-Level
13問Kotlin Coroutines and Flow
Mid-Level
20問Android Dependency Injection
Mid-Level
15問Android MVI Architecture
Mid-Level
17問Android Clean Architecture
Senior
21問Android Compose Advanced
Senior
17問Android Performance and Monitoring
Senior
13問Android Security and Privacy
Senior
18問Android CI/CD and Release
Senior
15問Android UX and Form Factors
Senior
18問Android Testing Advanced
Senior
18問