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 Java

Rating
-
Sold
-
Pages
2
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 is the output of the following Java program?
class A{
A(){
System.out.println("parent class constructor");
}
}//super class
class B extends A{
B(){
System.out.println("child class constructor");
}
}//sub class
class Test{
public static void main(String args[]){
B b=new B();
}
}

Ans:- parent class constructor
child class constructor

Q)When a sub class object is created, which constructor is invoked/executed first?
sub class’ or super class’?
=>whenever a sub class object is created, JVM calls the constructor of that sub class. From within the su
b class constructor, an implicit call(automatic call) is made to the super class zero argument constructor.

Q)What is the output of the following program?
class A{
A(int a){
System.out.println("parent class constructor");
}
}
class B extends A{
B(){
System.out.println("child class constructor");
}
}//sub class
class Test{
public static void main(String args[]){
B b=new B();
}
}
Ans:- The above program causes compilation error.
Reason:- In super class, zero argument constructor is not available.
Note:- To fix this error, make an explicit call to the super class parameterised
constructor.

B(){
super(10);//explicit call to the super class parameterised constructor.
System.out.println("child class constructor");
}

Q)What is the practical need of calling super class parameterised constructor explicitly
from the sub class constructor?

=>To initialize the parent class private variables for the sub class object,

Written for

Institution
Course

Document information

Uploaded on
September 22, 2024
Number of pages
2
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