- For the public modifier, it has the greatest access, and can access any class, interface, exception, and so on under Classpath. It is often used for external situations, i.e. the form of an interface to an object or class outside.
- For the protected modifier, its primary function is to protect the subclass. It means that the subclass can be decorated with its members, others cannot, it is equivalent to a subclass of the inheritance of something.
- For default, a bit of time also become friendly (friend), it is designed for this package access, any class, interface, exception, etc. under this package can be accessed by each other, even if the parent class is not decorated with protected members.
- For private, its access is limited to the inside of the class, and is a encapsulation embodiment, for example, most of the member variables are modifiers are private, they do not want to be accessed by any other external class.
The following table is the meaning and usage of the Java Access control characters:
|
Class Internal |
This package |
Sub-class |
External Package |
Public |
√ |
√ |
√ |
√ |
Protected |
√ |
√ |
√ |
X |
Default |
√ |
√ |
X |
X |
Private |
√ |
X |
X |
X |
Note: Java access control is stuck at the compiler level, that is, it does not leave any traces in the. class file, only access control checks during compilation. In fact, by means of reflection, it is possible to access any member of any class under any package, for example, to access a private member of a class.
Difference:
- Public: can be accessed by all other classes.
- Private: can only be accessed and modified by themselves.
- Protected: The class in itself, the subclass, and the same package can be accessed.
- Default: Classes in the same package can be accessed and declared without modifiers, which are considered friendly.
The difference between the Java modifier Public private protected and default (friendly)