This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Exceptions 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 » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Exceptions" Watch "Exceptions" New topic
Author

Exceptions

Doit
Ranch Hand

Joined: Aug 03, 2000
Posts: 169
I selected 1 as answer but the answer given is 3. Please explain.
- Thanks
import java.io.IOException;

public class Question72
{
public Question72() throws IOException
{
throw new IOException();
}
}
Assume that the defination of Question72E begins with the line
public class Question72E extends Question72
It is required that none of the constructors of Question72E should throw any checked exception.

1.It can be achived by placing the call to the superclass with a super keyword , which is placed in a try block with a catch block to handle the
IOException thrown by the super class.
2.It can be achived by avoiding explicit calls to the base class constructor.
3.It cannot be done in the Java Laungage with the above definition of the base class.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Exceptions
 
Similar Threads
Abhilash Quiz
Re:constructors throwing exceptions
Constructors??
Constructor and Inheritance
from abhilash - constructors