public class LecturerInfo extends StaffInfo { private float salary; public LecturerInfo() { this(); this.Name = null; this.Addr
if you modify the fist constructor to this:
public LecturerInfo() { this(null, null, (float)0.0); }
this will be recursive.