Kotlin支持函數(shù)式編程的特性,這些特性包括高階函數(shù)、Lambda表達式、函數(shù)類型、數(shù)據(jù)類等。下面是Kotlin中支持函數(shù)式編程的一些特性:
fun operate(a: Int, b: Int, operation: (Int, Int) -> Int): Int {
return operation(a, b)
}
val sum = operate(10, 5) { x, y -> x + y }
println(sum) // 輸出:15
val list = listOf(1, 2, 3, 4, 5)
val filteredList = list.filter { it > 2 }
println(filteredList) // 輸出:[3, 4, 5]
typealias
關(guān)鍵字來為函數(shù)類型定義別名。typealias Operation = (Int, Int) -> Int
fun add(a: Int, b: Int): Int {
return a + b
}
val operation: Operation = ::add
println(operation(10, 5)) // 輸出:15
data class Person(val name: String, val age: Int)
val person = Person("Alice", 30)
println(person) // 輸出:Person(name=Alice, age=30)
通過上述特性,Kotlin提供了強大的函數(shù)式編程支持,使得代碼更加簡潔、可讀性更強、易于維護。