The example you posted should be described as overloading. The only thing different from overloading is a readability requirement that subclasses appears before its superclass.
The statement "Polymorphic catch blocks" requires a bit of gymnastics to parse.
After completing said gymnastics I would interpret it as
- A catch block providing a different implementation depending on the type of object being caught.
Something similar to
try{
} catchwith ( catchHandlerObject );
And catchHandlerObject is polymorphic. I.e. handles the same exception differently depending on the (runtime) type of catchHandlerObject.
Is
class C{
public void m(Object o){ .... };
}
Is m(Object o)
polymorphic? I would say that the consensus is that it is unnecessary to include polymorphism in to this description. A call m( stringObject )
. is not indicative of polymorphism.
I go contrary to the previous posters an say no. Polymorphic is not the proper way to label this situation. Polymorphism is not the proper way to describe what is happening.
I also really think you should double check this with your TA or your professor. It happens regularly that questions include mistakes ranging from spelling to completely out of mind experiences.
As yshavit noted, overloading indicates a compile time binding. The catch-block is by necessity resolved at runtime. I'm at a loss finding a better term than overloading though.