Java Access Modifiers
Java Access Modifiers
http://www.tutorialspoint.com/java/java_access_modifiers.htm
Copyright tutorialspoint.com
Java provides a number of access modifiers to set access levels for classes, variables, methods and constructors. The four
access levels are:
Visible to the package. the default. No modifiers are needed.
Visible to the class only (private).
Visible to the world (public).
Visible to the package and all subclasses (protected).
Example:
Variables and methods can be declared without any modifiers, as in the following examples:
String version = "1.5.1";
boolean processOrder() {
return true;
}
Example:
The following class uses private access control:
public class Logger {
private String format;
public String getFormat() {
return this.format;
}
public void setFormat(String format) {
this.format = format;
}
}
Here, the format variable of the Logger class is private, so there's no way for other classes to retrieve or set its value
directly.
So to make this variable available to the outside world, we defined two public methods: getFormat(), which returns the
value of format, and setFormat(String), which sets its value.
Example:
The following function uses public access control:
public static void main(String[] arguments) {
// ...
}
The main() method of an application has to be public. Otherwise, it could not be called by a Java interpreter (such as
java) to run the class.
Example:
The following parent class uses protected access control, to allow its child class override openSpeaker() method:
class AudioPlayer {
protected boolean openSpeaker(Speaker sp) {
// implementation details
}
}
class StreamingAudioPlayer {
boolean openSpeaker(Speaker sp) {
// implementation details
}
}
Here if we define openSpeaker() method as private then it would not be accessible from any other class other than
AudioPlayer. If we define it as public then it would become accessible to all the outside world. But our intension is to
expose this method to its subclass only, thats why we used protected modifier.