Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Summary

Summary Learn Java

Rating
-
Sold
-
Pages
3
Uploaded on
22-09-2024
Written in
2024/2025

Learn Java and try this example for your better understanding of Java and improve your skills in Java

Institution
Course

Content preview

Q)What are the different uses of "super" keyword in Java?
=>super keyword is used in a Java program in 3 scenarios.

1)to call a parameterised super class constructor from within the sub class
constructor.

2)to call the overridden method from within the overriding method.

3)when super class variable name and sub class variable name are same,
to refer to the super class variable from the sub class method.
For eg.
class A{
int a;
A(){
a=10;
}
}
class B extends A{
int a;
B(){
a=50;
}
void display(){
System.out.println("super a="+super.a);
System.out.println("a="+a);
}
}
class Test{
public static void main(String[] args){
B b=new B();
b.display();
}
}
final modifier
--------------
=>"final" is a keyword in Java.
=>"final" keyword can be applied to
1)variables
2)methods
3)classes
final variables
----------------
=>When final modifier is applied to a variable, it becomes a constant.I.e. constants
are created in Java using "final" keyword.
For eg.
final int MAX=10;

=>Once a final variable(constant) is created, programmatically its value can’t be
changed in the program.
For eg.
final int MAX=10;
MAX=40;//error

=>final variable must be defined and should not be declared.

Written for

Institution
Course

Document information

Uploaded on
September 22, 2024
Number of pages
3
Written in
2024/2025
Type
SUMMARY

Subjects

$5.39
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
saiteja4

Get to know the seller

Seller avatar
saiteja4 Swami Vivekanand institution
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
1 year
Number of followers
0
Documents
10
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions