The difference between private, protected, public, and default in Java
1) for the public modifier, it has the most access rights and can access any class, interface, exception, etc. under Classpath. It is often used for external situations, i.e. the form of an interface to an object or class outside.
(2) for the protected modifier, its main 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.
(3) 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, even if the parent class is not decorated with protected members can also.
(4) for private, its access is limited to the inside of the class, 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 character
|
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:
(1) Public: can be accessed by all other classes.
(2) Private: can only be accessed and modified by themselves.
(3) Protected: The class in itself, the subclass and the same package can be accessed.
(4) Default: Classes in the same package can be accessed and declared without modifiers, which are considered friendly.
public--accessible (public)
private--class accessible (private)
protected--in-Package and subclass accessible (protected)
Do not write (default)--in-package accessible
Public>protected>default>private
Http://blog.sina.com.cn/s/blog_74c571240101jaf5.html
The difference between private, protected, public, and default in Java