The difference between private, protected, public, and default in Java

Source: Internet
Author: User
Tags modifiers

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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.