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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T21:48:34+00:00 2026-06-01T21:48:34+00:00

Possible Duplicate: this and super in java I’m new to development. Something that I’m

  • 0

Possible Duplicate:
this and super in java

I’m new to development. Something that I’m still unable to understand is the difference between this and super keywords. If there are any answers, it would be highly appreciated. Thanks.

  • 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-01T21:48:35+00:00Added an answer on June 1, 2026 at 9:48 pm

    In Java the keyword this refers to the current object of a class, like in:

    class Point {
        public int x = 0;
        public int y = 0;
    
        public Point(int x, int y) {
            this.x = x;
            this.y = y;
        }
    
        public String toString() {
           return x + "," + y;
        }
    }
    
    
    class Point3D extends Point {
        public int z = 0;
    
        public Point(int x, int y, int z) {
            super(x,y);
            this.z = z;
        }
    
        public String toString() {
           return super.toString() + "," + z;
        }
    }
    

    In the constructor of the class Point this.x refers to the x defined in the class, where x is the parameter passed into the constructor. Here this is used to resolve the ambiguity of the name x. The same thing is true for y.

    In the class Point3D the method toString() uses the return value of the super class Point to produce its own return value.

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

Sidebar

Related Questions

Possible Duplicate: Reference - What does this symbol mean in PHP? What's the difference
Possible Duplicate: Plugging in to Java compilers Edit - this appears to be a
Possible Duplicate: Why does this() and super() have to be the first statement in
Possible Duplicate: Java - Leaking this in constructor In the NetBeans I have a
Possible Duplicate: How to do edit-in-place in a UITableView? I am new to this
Possible Duplicate: Why this is not compiling in Java? In java, curly braces are
Possible Duplicate: Is this a good way to generate a string of random characters?
Possible Duplicate: Why does this intentionally incorrect use of strcpy not fail horribly? Below
Possible Duplicate: What is useful about this C syntax? C variable declarations after function
Possible Duplicate: How to access this attribute using jquery, given a div defined by

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.