0 votes
in Kotlin by
What is the use of abstraction in Kotlin?

1 Answer

0 votes
by

Abstraction is the most important concept of Objected Oriented Programming. In Kotlin, abstraction class is used when you know what functionalities a class should have. But you are not aware of how the functionality is implemented or if the functionality can be implemented using different methods.

...