Hi Louis, A default constructor is a constructor without any parameters, i.e., it is a no-parameter constructor.If a class does not specify any constructors, then an implicit default constructor is generated for the class by the compiler.A class can choose to provide an implementation of the default constructor.If a class defines any explicit constructors, it can no longer rely on the implicit default constructor to set the state of its objects. If such a class requires a default constructor, its implementation must be provided.
Thanks, Ashok A V On Tue, Sep 8, 2009 at 7:08 AM, Louis (comcast)<[email protected]> wrote: > I am getting an error as shown. Any help appreciated. > > > > > ============= here is the (partial) code in Person ======================= > > > ============ here is the (partial) code in AddressImpl > ==================== > > > > > -- Victory belongs to the most persevering. - Napoleon --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/javaprogrammingwithpassion?hl=en -~----------~----~----~----~------~----~------~--~---
