Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7897325
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T08:08:18+00:00 2026-06-03T08:08:18+00:00

Do subclasses inherit private fields? This question addresses the same problem but I don’t

  • 0

Do subclasses inherit private fields?

This question addresses the same problem but I don’t quite understand how that satisfies the (seemingly) contradictory situations below.

http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html

Says that “A subclass does not inherit the private members of its parent class.”

This means that it neither inherits private instance variables nor private methods right?

However, how does this work if it inherits a public accessor method from its parent? It returns an instance variable that it doesn’t know exists?

Also, my computer science book (Baron’s AP Computer Science A) has the correct answer to a question that says that “The (Subclass) inherits all the private instance variables and public accessor methods from the (Superclass).”

Isn’t this in contraction to oracle’s tutorial?

Thanks for your help

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T08:08:20+00:00Added an answer on June 3, 2026 at 8:08 am

    Private members are inherited too. To test this, you can do the following in the superclass:

    //...
    private String myText = "I'm in the superclass";
    
    private void setMyText(String myTextValue)
    {
        this.myText = myTextValue;
    }
    
    public void setMyTextPublic(String myTextValue)
    {
        setMyText(myTextValue);
    }
    
    public String getMyText()
    {
        return myText;
    }
    //...
    

    Create a method in the inherited class:

    //...
    public void setMyTextInTheSuperClass(String myTextValue)
    {
        System.out.println(getMyText());
        setMyTextPublic(myTextValue);
        System.out.println(getMyText());
    }
    
    public void setConstantValueToMyText()
    {
        setMyTextInTheSuperClass("I am in the child class");
    }
    //...
    

    And call setConstantValueToMyText somewhere.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have read that a subclass cannot inherit private fields or methods. However, in
I have a basic class that derived subclasses inherit from, it carries the basic
Say I had a class SuperClass and two subclasses SubClassA and SubClassB that inherit
I have a class, which has a bunch of subclasses that inherit from it.
i am writing an event driven simulation program. i have 3 subclasses that inherit
I have a superclass called City and a bunch of subclasses that inherit from
Originally I had a design problem where I needed five subclasses of a superclass,
This question is similar to c# internal abstract class, how to hide usage outside
I have a bunch of stored, serialized classes (that all inherit from a base
OOP beginner here and my problem is when i get to this event :

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.