2

コンパイルは 8 行目で失敗します。「super」の「s」が間違っていると書かれています。

public class BasePlusCommissionEmployee extends CommissionEmployee {    
  private double baseSalary;

  //constructor
  public BasePlusCommissionEmployee( String first, String last, String ssn, int mth, 
          int day, int yr, double sales, double rate, double salary )
  {
     super( first, last, ssn, mth, day, yr, sales, rate );
     setBaseSalary( salary );
  }

エラーメッセージ: エラーメッセージ

4

1 に答える 1

1

おそらく、CommissionEmployee クラスのコンストラクタであるスーパー コンストラクタを正しく呼び出しておらず、間違ったパラメータを渡している可能性があります。それを修正すると、エラーが解消される可能性があります。

于 2012-09-30T05:13:25.160 に答える