Java Term of the Week: Superclass
Saturday January 3, 2009
In contrast to last week's Java term, a superclass is a class that has been extended by another class. It can allow the extending class to build upon the state and behaviors it defines.
For example, the Person class is the superclass of Employee:
public class Employee extends Person
{
}


It’d be nice if you write about diference between this and super lots of person get confused!!
Good suggestion – I’ll make super a term of the week in the future.