3
public class LecturerInfo extends StaffInfo {

    private float salary;

    public LecturerInfo()
    {
        this();
        this.Name = null;
        this.Address = null;
        this.salary=(float) 0.0;
    }

    public LecturerInfo(String nama, String alamat, float gaji)
    {
        super(nama, alamat);
        Name = nama;
        Address = alamat;
        salary = gaji;
    }

    @Override
    public void displayInfo()
    {
         System.out.println("Name :" +Name);
         System.out.println("Address :" +Address);
         System.out.println("Salary :" +salary);
    }
}

此代码显示一个错误,即:

递归构造函数调用 LecturerInfo()

是因为无参构造函数与带参数的构造函数有冲突吗?

4

3 回答 3

14

下面的代码是递归的。因为this()LectureInfo()再次调用当前类的无 arg 构造函数。

public LecturerInfo()
{
    this(); //here it translates to LectureInfo() 
    this.Name = null;
    this.Address = null;
    this.salary=(float) 0.0;
}
于 2013-05-09T09:44:51.970 回答
2

通过调用this()你正在调用你自己的构造函数。通过观察您的代码,您似乎应该调用super()而不是this();

于 2013-05-09T09:50:18.260 回答
2

如果将第一个构造函数修改为:

 public LecturerInfo()
 {
   this(null, null, (float)0.0);
 }

这将是递归的。

于 2013-05-09T09:53:00.127 回答