April 2024
Intermediate to advanced
474 pages
9h 39m
English
This chapter talks about behavioral patterns using Kotlin. Behavioral patterns deal with how things interact with each other.
We will learn how an object can change how it acts depending on the situation, how objects can talk to each other without knowing all the details, and how to go through complicated setups easily. We will also touch on functional programming in Kotlin, which makes it easier to use some of these patterns.
In this chapter, we’ll explore the following topics:
By the end of this chapter, you’ll be able to structure your code in a highly decoupled and flexible manner. ...