Skip to main content

One post tagged with "Inheritance"

The 'Inheritance' tag archive contains a wide range of articles and tutorials that cover the concept of inheritance in various programming languages. It provides a deep understanding of this fundamental object-oriented programming concept.

View All Tags

Exploring Kotlin's Companion Objects

· 9 min read
Engineering Team

In this tutorial, we will explore Kotlin's companion objects and learn how they can be used in software development. Companion objects in Kotlin are special objects that are associated with a class and have a similar behavior to static members in Java. They can be created within a class and provide a way to define properties and functions that can be accessed without having an instance of the class.