0

我收到此错误消息:

发现2个错误:

错误:PayCalculator 类型中的方法 determineTaxRate(double) 不适用于参数 ()

错误:PayCalculator 类型中的方法 calculateNetPay(double, double) 不适用于参数 ()

你能告诉我该怎么做才能解决这个问题吗?

public class PayCalculator
{
    private double hourlyRate;
    private double hoursWorked;

     /**
     * Two parameter constructor
     * Add hourlyRate and hoursWorked
     * @param the hourly rate
     * @param the hours worked
     */
    public PayCalculator(double aHourlyRate, double aHoursWorked)
    {
        hourlyRate = aHourlyRate;
        hoursWorked = aHoursWorked;
    }

    /**
    * sets the hourly rate
    * @return hourlyRate
    */ 
    public void setHourlyRate(double aHourlyRate)
    {
        hourlyRate = aHourlyRate;
    }

    /**
    * gets the hourly rate
    * @param hourlyRate
    */
    public double getHourlyRate()
    {
        return hourlyRate;
    }

    /**
    * sets the hours worked
    * @return hoursWorked
    */ 
    public void setHoursWorked(double aHoursWorked)
    {
        hoursWorked = aHoursWorked;
    }

    /**
    * gets the hours worked
    * @param hours worked
    */
    public double getHoursWorked()
    {
        return hoursWorked;
    }



    public boolean workedOvertime()
    {
        if (hoursWorked > 40)
        {
            return true;
        }
        else 
        {
            return false;
        }
    }

    public double numHoursOvertime()
    {
        if (hoursWorked > 40)
        {
            return hoursWorked - 40;
        }
        else 
        {
            return 0;
        }
    }

    public double calculateGrossPay()
    {
        if (hourlyRate  <= 10.25)
        {
            if (hourlyRate <= 40)
                return hourlyRate * hoursWorked;
        }
        else 
        {  
            double grossPay = ((40 * hourlyRate) + ((hourlyRate * 2) * hoursWorked - 40));
            return grossPay;
        }

        if (hoursWorked <= 60)
        {
            return hourlyRate * hoursWorked;
        }
        else
        {
            return 60 * hourlyRate;
        }
    }

    public double determineTaxRate(double grossPay)
    {
        if (grossPay >= 800)
        {
            double tax = 0;
            tax = grossPay * 0.37;
            return tax;
        }
        else if ( grossPay >= 400)
        {
            double tax = 0;
            tax = grossPay * 0.22;
            return tax;
        }
        else
        {
            double tax = 0;
            tax = grossPay * 0.12;
            return tax;
        }
    }

    public double calculateNetPay(double grossPay, double tax)
    {
        double calculateNetPay = grossPay - tax;
        return calculateNetPay;
    }

    public void printData()
    {
        System.out.println("Hours Worked: " + hoursWorked);
        System.out.println("Hourly rate: " + hourlyRate);
        System.out.println("Number of hours of overtime worked: " + numHoursOvertime());
        System.out.println("Worked overtime? " + workedOvertime());
        System.out.println("Gross pay: " + calculateGrossPay());
        System.out.println("Tax Rate: " + determineTaxRate());
        System.out.println("Net Pay: " + calculateNetPay());
    }

}
4

4 回答 4

4

你在打电话

determineTaxRate()

但是您的方法定义为:

public double determineTaxRate(double grossPay)
{

与您的其他错误相同。您需要将 a 传递double给该方法。比如这样:

determineTaxRate(calculateGrossPay())
于 2013-03-08T03:04:07.173 回答
1

您没有为从方法调用的方法指定参数printData(),例如:

System.out.println("Net Pay: " + calculateNetPay());

calculateNetPay()使用 0 个参数进行调用,正如您在方法定义中指定的那样,它需要 2 个双参数。

public double calculateNetPay(double grossPay, double tax) { ... }

同样适用于您遇到的其他错误。

于 2013-03-08T03:04:34.260 回答
1

你已经像这样声明了你的方法:

public double determineTaxRate(double grossPay)

然后像这样调用它:

determineTaxRate()

显然,您在调用该方法时错过了一个参数

通过 determineTaxRate(someDoubleVar) 解决此问题

于 2013-03-08T03:18:26.253 回答
1

您的方法用一个参数定义。但是您没有传递任何参数。

对于 calculateNetPay() 你也在做同样的事情。

于 2013-03-08T03:05:04.753 回答