Access modifiers in Java public, private, PROTECTE, default

Source: Internet
Author: User
Tags modifiers

The meaning of the access modifier in Java, public, private, PROTECTE, default, is explained:
The most restrictive modifier in the Public:java language, commonly referred to as "public". Classes, properties, and methods that are modified by it are not
Can be accessed only across classes, and across packages (package).
The narrowest modifier for access restrictions in the Private:java language is generally referred to as "private." The classes, attributes, and properties that are modified to
and methods can only be accessed by objects of that class, their subclasses are inaccessible, and cross-package access is not allowed.
Protect: An access modifier between public and private, commonly referred to as a "protected form." The class that is modified by it,
Properties and methods can only be accessed by methods and subclasses of the class itself, even if the subclasses are accessible in different packages.
Default: That is, without any access modifiers, often referred to as the "Default access mode." In this mode, only the same package is allowed to be visited
Ask.

Access modifiers in Java public, private, PROTECTE, default

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.