123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Education >> View Article

Usage Of Super And Final Keyword

Profile Picture
By Author: Pradip Dwevedi
Total Articles: 3
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

A superclass constructor must execute before a subclass constructor. So that the state and behaviour defined by the superclass may be correctly and completely initialized before a subclass constructor executes.

Java compiler assumes that the first line of every constructor is an implicit call to the default superclass constructor unless you explicitly use super().super keyword is used to explicitly invoke a superclass constructor. it must appear as the first statement of the constructor to ensure that the superclass constructor executes before the subclass constructor in java.

Syntax:

super(arg);

The above is the syntax for calling superclass constructor.arg is optional list of arguments of the superclass constructor. You cannot use both super() and this() at the same time in same constructor.

Example for calling super class constructor:

class One
{
One()
{
System.out.println("Constructor of One class");
}
}

class Two extends One
{
Two()
{
//super will be inserted here by default
System.out.println("Constructor ...
... of Two class");
}
}

class Three extends Two
{
Three()
{
//super will be inserted here by default
System.out.println("Constructor of Three class");
}
}

class MainClass
{
public static void main(String args())
{
Three obj = new Three();
}
}
Output:
Constructor of One class
Constructor of Two class
Constructor of Three class

Super keyword is also to call the superclass overridden method.

Advantages:

->super keyword is used to refer immediate parent class instance variable
->super() is used to invoke immediate parent class constructor
->super is used to invoke immediate parent class method
This is an important topic in the SCJP (now known as OCJP) certification, and should be well understood by the aspirants.

Final Keyword:

final is a keyword or reserved word in java and can be applied to member variables, methods, class and local variables in Java. Once you make a reference final you are not allowed to change that reference and compiler will verify this and raise compilation error if you try to re-initialized final variables in java

final Variable:

Any variable declared as final either in block or method they cant be modified.final variables are by default read only.

Example:

public static final String var = "whizlabs";

var=new String(“SCJP”); // compilation error.

final method:

A java method with final keyword is called final method and it cannot be overridden in sub-class. You should make a method final in java if you think it’s complete and its behaviour should remain constant in sub-classes. Final methods are faster than non-final methods because they are not required to be resolved during run-time and they are bonded on compile time.

Example:

class One{
public final String call(){
return "This is from One";
}
}
class Two extends One{
public final String call(){
return "This is from Two"; //compilation error: overridden method is final
}
}

final Class:

Final class is complete in nature and cannot be sub-classed or inherited. Several classes in Java are final e.g. String, Integer and other wrapper classes

Example:

final class One{}
class Two extends One{} // compilation error :cannot inherit final class
This is also an important part of the SCJP 6 certification course however aspirants who are preparing for OCAJP certification course should also look into this topic.

Author of the article is associated with Whizlabs, the global provider of certification preparation course material for Java, Project Management, and CCNA.

Total Views: 359Word Count: 480See All articles From Author

Add Comment

Education Articles

1. Digital Marketing Course In Collaboration: A Smart Career Choice
Author: Aima Courses

2. A Complete Guide To Osep Special Education Programs And Online Resources
Author: Passyourcert

3. Rcdd Certification Guide: Requirements, Exam, Cost, And A Practical Pass Strategy
Author: Passyourcert

4. Salesforce Devops Training In India | Online Course
Author: Vamsi Ulavapati

5. Smile Design In Chennai – Transform Your Smile With Advanced Cosmetic Dentistry
Author: ivar

6. Porcelain Veneers In Chennai Porcelain Veneers In Chennai – The Ideal Choice For A Radiant And Natural Smile
Author: ivar

7. Discover Your Path To A Safe Career With An Industrial Safety Courses
Author: Safety Isa

8. Best Saloon In Anna Nagar East – Professional Beauty And Grooming Services For Every Style
Author: MAHESH

9. Keratin Treatment In Anna Nagar – Get Smooth, Frizz-free, And Healthy Hair
Author: MAHESH

10. Us F-1 Visa Rejection 2026: Common Reasons & How To Avoid Them
Author: Nivesa EdTech

11. Non Invasive Hifu Face Lift In Anna Nagar – Lift And Tighten Your Skin Without Surgery
Author: MAHESH

12. How To Dominate The Cia Certification Exam: A Strategic Blueprint For It Professionals
Author: Passyourcert

13. Fpm Programmes At Mdi Gurgaon: A Pathway To Excellence In Management Research
Author: Rohit Ridge

14. Abacus Class Half Moon Bay | Build Strong Maths Skills With Sip Abacus
Author: SIP Abacus NZ

15. Train The Trainer For Security Industry: Skills, Qualifications & Opportunities
Author: Amba Training

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: