Introduction to Design Patterns
Get introduced to design patterns in Kotlin and explore their use in real life.
We'll cover the following...
Now that we are a bit more familiar with basic Kotlin syntax, we can move on to discussing what design patterns are all about.
What are design patterns?
There are different misconceptions surrounding design patterns. In general, these misconceptions include:
- Design patterns are just missing language features.
- Design patterns are not necessary in a dynamic language.
- Design patterns are only relevant to object-oriented languages.
- Design patterns are only used in enterprises.
Actually, design patterns are just a proven way to solve a common problem. As a concept, they are not limited to a specific programming language (Java), nor to a family of languages (the C family, for ...