0
Difference between Protected Property and Private Property
What is the difference between Protected Property and Private Property in Kotlin Class?
1 Answer
+ 3
Protected
The second level is âprotected.â Protected properties and methods can be accessed from inside the class they are declared, or in any class that extends them. They canât be accessed from outside the class or subclass.
Private
While protected properties and methods are accessible anywhere in the object, the third level âprivateâ is more restrictive.
A private property or method canât be accessed by a subclass of the class it is defined in. If you have a class with a protected property and a private property and then extend that class in the subclass, you can access the protected property, but not the private property.
Hope you may understand~