Java Modifiers and inheritance

Source: Internet
Author: User
Tags inheritance modifiers

The member variables of a Java class typically have the following access modifiers:

Public, private, protected, or default,

For example, in package first, if there is a class FirstClass with four variables:

public int pp;

private int Xiaopp;

protected int DD;

int xiaodd;

If there is another class in package-Secondclass inherits FirstClass:

Then he will inherit the three variables in FirstClass, respectively:

public int pp;

protected int DD;

int xiaodd;

If a class Thirdclass inherits FirstClass in another package second,

Then he will inherit the two variables in FirstClass:

public int pp;

protected int DD;

From the example above we can see that the access modifiers are inherited by the relationship:

Public can be inherited by any subclass;

Protected although he would block access to classes outside the package, he would not block class inheritance outside of the package;

The default access modifier can only be accessed by classes within the same package, and it can only be inherited by subclasses of the same package;

Private access is limited to the same class and cannot be inherited.

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.