函數式核心概念

First-class functions - You work with functions (pieces of behavior) as values. You can store them in variables, pass them as parameters, or return them from other functions.ide

Immutability - You work with immutable objects, which guarantees that their state can’t change after their creation.input

No side effects - You use pure functions that return the same result given the same inputs and don’t modify the state of other objects or interact with the outside world.it

 

摘抄《Kotlin in action》io

相關文章
相關標籤/搜索