aspose file tools
The moose likes Java in General and the fly likes interview doubt Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "interview doubt" Watch "interview doubt" New topic
Author

interview doubt

Ayub ali khan
Ranch Hand

Joined: Oct 20, 2005
Posts: 378
    
    2
Hi,

I tried the below code. The only thing I found was with the exception not being declared in the sub class.

I would appreciate if any one could help me understand whats wrong with the below code:

class Xx{

Xx() throws Exception{

System.out.println("Hello");

}
public static void main(String args[]){

new yy();

}

}

class Yy extends Xx{

}

------------------------------

When I modified Yy class as below I did not find any errors...

class Yy extends Xx{

Yy() throws Exception{

}

}

I appreciate all your comments...

Thank you.

Ayub.


SCEA part I,TOGAF Foundation
Nikhil Jain
Ranch Hand

Joined: May 15, 2005
Posts: 383
If you call a constructor or a method that throws an exception, you must either
1. put the function/constructor call in try/catch block
2. or declare the method with throws...

In your example, the compiler automatically puts super() as the first statement, so its calling the super class constructor. So you should either use try/catch in sub class constructor or you should declare the constructor with throws...


SCJP 1.4, SCWCD 1.4, SCBCD 1.5
Ayub ali khan
Ranch Hand

Joined: Oct 20, 2005
Posts: 378
    
    2
Hi Shashank,


Thank you for answering my question. I understood the concept you told.

Thank you!!
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: interview doubt
 
Similar Threads
Why I cannot extend the inner class with enclosing class
I think D is right, but someone told me C is right.
method overloading question
Making a class non extensible without using final
Runtime vs Compile time