So I'm new at Java, and I'm trying to work with the try, catch and finally features. As my limited understanding goes, a try-catch block allows me to handle exceptions instead of the compiler throwing an error that I can't return to execution from. Is this right? Also, my program doesn't seem to be working, as the compiler throws "Extracur is abstract, cannot be instantiated!" during compilation. How do I get it to display my error message (and execute my finally block) instead?
try {
extracur student1 = new extracur();
} catch (InstantiationException e) {
System.out.println("\n Did you just try to create an object for an interface? Tsk tsk.");
} finally {
ReportCard student = new ReportCard("Progress Report for the year 2012-13");
student.printReportCard();
}
PS- extracur is an interface.
Interfaces can never be directly instantiated.
And you should capitalize interface names. You need instead:
Explanation: The code does not instantiate the interface, but an anonymous inner class which implements the interface.
You should also understand that the compiler throws an error at compile time while you are trying to catch an error at runtime (too late in this case).