来自超类的变量并不是显而易见的

时间:2016-02-25 10:37:00

标签: java variables subclass superclass money-format

我遇到了一个我无法理解的问题。我有一个程序,我需要一些输入,并计算工资,税收和最终工资。 除了最终报酬外,一切都在运作。

计算最终工资

import java.util.*;
public class Payroll extends  Pay
{

public double calc_payroll()
  {
    super.calc_payroll();
    super.tax();

    netPay = grossPay - (grossPay * (tax/100));

    return netPay;

  }
}

计算工资和税金

import java.util.*;
public class Pay
{
private float hoursWrkd;
private float rate;
private int hoursStr;

float grossPay;
int tax;
float netPay;


public double calc_payroll()
{
    grossPay = getHoursWrkd()*getRate();
    return grossPay;

}

public double tax()
{
    if (grossPay <= 399.99)
    {
        tax = 7;
    }
    else if (grossPay >= 400.00 && grossPay <= 899.99)
    {
        tax = 11;
    }
    else if (grossPay <= 900.00)
    {
        tax = 15;
    }

    return tax;
}


//Get & Set for hours worked
public float getHoursWrkd()
{
    return hoursWrkd;
}
public void setHoursWrkd(float hoursWrkd)
{
    this.hoursWrkd = hoursWrkd;
}
//Get & Set for Rate
public float getRate()
{
    return rate;
}
public void setRate(float rate) {
    this.rate = rate;
}
//Get & Set for hours straight
public int getHoursStr()
{
    return hoursStr;
}
public void setHoursStr(int hoursStr)
{
    this.hoursStr = hoursStr;
}
}

,这会显示所有

public class CalPayroll extends Pay
{
public void displayInfo()
{
   super.calc_payroll();
   super.tax();

    Payroll colio = new Payroll();
    colio.calc_payroll();

    NumberFormat dollars = NumberFormat.getCurrencyInstance();

    System.out.println("Gross Pay is : " + dollars.format(grossPay));
    System.out.println("Tax is : " + tax + "%");
    System.out.println("Net Pay is : " + dollars.format(netPay));
}

我有更多的文件,但那些只是接受输入,并调用其他文件。

数学是正确的,但是当我尝试调用netPay变量并对其进行格式化时,它不会显示任何ammount。随着毛簸,它的工作原理。然而,我的老师说应该把毛钱转入税,所以它可以使用它,我不知道是否会解决它。

提供帮助。

1 个答案:

答案 0 :(得分:0)

您尝试从netPay显示CalPayroll,但此类从不计算此值。当你这样做

Payroll colio = new Payroll();
colio.calc_payroll();

您可能期望在netPay中计算CalPayrool,但您实际上是在单独的对象中计算单独的值,这对当前对象没有影响。