posted 20 years ago
You don't have to call super: the default super gets called automatically. The reason you might want to, however, is for times when you need a constructor other then the default constructor.
In the example below, the object kid_1 uses the default call, but the onject kid_2 uses an overloaded constructor.
and
HTH,
M