Java - Thing to know before proceed - Access Modifier Tutorial
There are three types of access modifier in java
- Private
- Public
- Protected
Private -This modifier can be accessed only inside the class, it cannot be accessed from outside the class.
Public-This modifier can be accessed from anywhere. both outside and inside the class.
Protected-This modifier can be accessed within the package and outside the package through child class.