What is the difference between Super and This Keyword?

Answers were Sorted based on User's Feedback



What is the difference between Super and This Keyword?..

Answer / chandrasekhar

Super is used for refer super class members.this is used for refer same class meembers

Is This Answer Correct ?    2 Yes 0 No

What is the difference between Super and This Keyword?..

Answer / chandrasekhar.p

By using super we can refer the super class methods or members.This is used for refer current class members

Is This Answer Correct ?    2 Yes 1 No

What is the difference between Super and This Keyword?..

Answer / skp

Call to super() should be the first statement in constructor instead of this(), otherwise it will result in compile-time error.

Is This Answer Correct ?    1 Yes 0 No

What is the difference between Super and This Keyword?..

Answer / deep

Super and This both are keywords and which has some predefined meaning..

Super - with the help of super, you could call super class constructor, method and member of super class..

This - it's used to avoid instance variable hiding, when local variable and instance variable has same name, then at time of assignment, local variable hides instance variable, so in order to get over this problem, this is used to refer instance variable..

class A {
int x; // instance variable
public void m(int x) {
x = x; // here local variable x hides instance variable
x.. so better use this to refer the instance variable

this.x = x; here this.x refer to instance variable and where another x is local variable
}

this is also used to call current class constructor and it can also used to pass current class constructor or method to another object..

you can also use this to call current class constructor or methods..

Rule: Call to this() must be the first statement in constructor or else it will result in compile time error..

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Advanced Java Interview Questions

Explain the life cycle of servlet?

3 Answers   Cognizant, HCL,


How many ways can a thread be used?

4 Answers   Sun Microsystems,


difference between applicationserver and webserver

4 Answers   SolutionNET,


if i know the lenght of collection in hand, should I use Array or Arraylist? justify

1 Answers   iTrust,


What is the initial state, When a thread is created and started?

3 Answers  






What method is invoked to cause an object to begin executing as a separate thread?

0 Answers  


whats is statement and procedure

0 Answers   TCS,


Name three component subclasses that support painting?

0 Answers  


What is Remote Server?

0 Answers   TCS,


Name the method to find, if a thread is active or not?

2 Answers  


What is a modular application?

0 Answers  


Thread life cycle?

3 Answers   TCS,


Categories