Introduction to Kotlin Objects
Introduction to Kotlin Objects Note this blog post contains my notes from the Introduction to Kotlin Objects chapter in the book Atomic Kotlin. Consider buying a copy of the book for a more detailed reference. Objects hold data and perform actions. They store data using properties (vals and vars) and perform actions using functions. Creating Classes Classes are called user-defined types A class member is a property or function of a class