0

我被一个模拟考试问题困住了。我创建了一个名为的类Power,它允许将数字提升到任何幂。

问题的第三部分要求我创建另一个BoundedPower可以扩展的类Power。我得到了MAX-X变量(x 不能超过这个值),并告诉我这个BoundedPower类必须:表现得像Power类,使用构造函数并使用powN方法。

我的代码在下面,我不知道该怎么做才能使BoundedPower课程正常工作。

public class Power {

    private double x = 0;

    Power(double x) {
        this.x = x;
    }

    public double getX() {
        return x;
    }

    public double powN(int n) {

        double result = 1.0;
        for (int i = 0; i < n; i++) {
            result = result * x;
        }
        return result;

    }

    public static void main(String[] args) {

        Power p = new Power(5.0);
        double d = p.powN(3);
        System.out.println(d);
    }

}


public class BoundedPower extends Power {

    public static final double MAX_X = 1000000;

    // invariant: x <= MAX_X

    Power x;

    BoundedPower(double x) {
        super(x);
        // this.x=x; x is private in Power class

    }

    public double powN(int n) {

        if (x.getX() > MAX_X) {

            return 0;
        } else {

            double result = 1.0;
            for (int i = 0; i < n; i++) {
                result = result * getX();
            }
            return result;
        }
    }

    public static void main(String[] args) {

        BoundedPower bp = new BoundedPower(5);
        double test = bp.powN(4);
        System.out.println(test);
    }

}
4

4 回答 4

3

您的类中不需要该实例 Power 变量 x 。任何 BoundedPower 实例都是 Power 实例,因此,要从 Power 中引用方法,请执行 super.blah(),因此对于 x.getX(),请执行 super.getX()

另外,在您的评论中,您说 this.x=x 失败,因为它是私有的。当你进行 super 调用时,它会调用超类 (Power) 的构造函数,它在那里设置 x,因此不需要 this.x=x

于 2012-08-11T22:00:20.263 回答
1
public class BoundedPower extends Power {

  public static final double MAX_X = 1000000;

  BoundedPower(double x) {
    super(x);
  }

   public double powN(int n) {

     if (x.getX() > MAX_X) {
      return 0;
     } else {
      return super.powN(n);
     }
   }

   public static void main(String[] args) {

   BoundedPower bp = new BoundedPower(5);
   double test = bp.powN(4);
   System.out.println(test);
 }
} 

您不必将计算公式复制到子类(只需调用super.powN(..))。您也不需要Powerwithin的另一个实例BoundedPower

于 2012-08-11T22:05:40.690 回答
1

这大概就是他们心中的想法:

public class Power {
 public double powN(double x, int n) {
    double result = 1.0;
    for (int i = 0; i < n; i++) {
        result = result * x;
    }
    return result;
  }
}

public class BoundedPower extends Power {
  private final double maxX;

  public BoundedPower(double maxX) {
    this.maxX = maxX;
  }

  public double powN(double x, int n) {
    if (x > maxX) {
      throw new IllegalArgumentException("x value [" + x + "] " + 
        "greater than expected max [" + maxX + "]");
    }
    return super.powN(x, n);
  }
}
于 2012-08-11T22:05:49.403 回答
1

我会以不同的方式来做。从你所说的 BoundedPower 类只对有界 x(最多 MAX_X)有意义。

因此,我不允许创建 x 大于 MAX_X 的对象(即,对于无界 x,不能存在 BoundedPower 对象)

因此,除了您构建 BoundedPower 实例的方式之外,该实现将与 Power 实现完全相同:您首先检查构建它是否有意义

  public class BoundedPower extends Power {

        private static final double MAX_X = 1000000; //makes no sense to be public

        public static BoundedPower newBoundedPower(int n)
                                   throws IllegalNumberException{

               if(x > MAX_X) throw new IllegalNumberException();
               return new BoundedPower(x);
        }

        private BoundedPower(double x) {
               super(x);
        }
  }
于 2012-08-11T22:16:36.463 回答