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 8349575
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:02:43+00:00 2026-06-09T08:02:43+00:00

I think I’m misunderstanding something, and if so, I need help.. Let’s say I

  • 0

I think I’m misunderstanding something, and if so, I need help..

Let’s say I have the following two classes:

public abstract class Abstraction() {
   protected int number = 0;
   public void printNumber() {
       System.out.println(this.number);
       System.out.println(getNumber());
   }
   public int getNumber() {
       return this.number();
   }
}

public class Reality extends Abstraction {
   int number = 1;
   public Reality() {
       this.printNumber();
   }
}

// some other class
new Reality();

What should the output be? I’m getting 0, 0 (the code here is a bit more complicated but still the same issue).
How can I get the output to be 1,1?

  • 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-09T08:02:45+00:00Added an answer on June 9, 2026 at 8:02 am

    The number in the Reality class doesn’t overwrite the number in the Abstraction class. Therefore, the Abstraction class still sees his own number value as 0.

    A solution would be:

    public class Reality extends Abstraction {
       public Reality() {
           number = 1;
           this.printNumber();
       }
    }
    

    Because your number in Abstraction is protected, you can access it in your Reality class.


    Another example is a parameter in a method:

    private int number;
    
    public void myMethod(int number){
        number = 2;
    }
    

    Your private int number field won’t be set, instead, the parameter number will be set as 2.


    Finally, a word on the this and super keywords, see an edit of your classes:

    public abstract class Abstraction() {
       protected int number = 0;
       public void printNumber() {
           System.out.println(this.number);
           System.out.println(getNumber());
       }
       public int getNumber() {
           return this.number();
       }
    }
    
    public class Reality extends Abstraction {
       int number = 1;
       public Reality() {
           System.out.println(number); //Will print 1
           System.out.println(this.number); //Will print 1
           System.out.println(super.number); //Will print 0
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I think that I have a quite strange question. I am using a class
Think I have an integer array like this: a[0]=60; a[1]=321; a[2]=5; now I want
Think about the following: Your ISP offers you a dynamic ip-address (for example 123.123.123.123).
I think I have a basic understanding of this, but am hoping that someone
I think this could be a very easy question for you. But I have
Think Windows Explorer's 'Details' view. I need to output my database to this view.
Think of the following code: static int Main() { byte[] data = File.ReadAllBytes(anyfile); SomeMethod(data);
I think I have found a bug when setting or getting the Me.Top property
I think firefox's support to box model in CSS3 is soooooooooooooo poor... I have
Think about the classic installation process, where you have a next button and when

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.