0

我是java初学者,我生成随机和的代码引发了一个奇怪的异常......

    public void randomRekensom(int n)
{

    switch(n) {
        case 1: this.max = 100;
                break;
        case 2: this.max = 150;
                break;
        case 3: this.max = 200;
                break;
}
    getal1= (int) Math.sqrt(max);
    getal2= (int) Math.sqrt(max);

    operator=ThreadLocalRandom.current().nextInt(1, 4 + 1);
    switch(operator) {
        case 1: antwoord=(this.getal1+this.getal2);
                operatorTeken=" + ";
                break;
        case 2: antwoord=(this.getal1-this.getal2);
                operatorTeken=" - ";
                break;
        case 3: antwoord=(this.getal1/this.getal2);
                operatorTeken=" / ";
                break;
        case 4: antwoord=(this.getal1*this.getal2);
                operatorTeken=" * ";
                break;
}

}

也许是因为我今天盯着屏幕看太多了,但我不知道为什么会出现这个错误。

提前致谢!

4

1 回答 1

3

您只设置this.maxifn为 1、2 或 3。如果您之前没有将其设置为其他值,则this.max == 0, getal2 == Math.sqrt(0) == 0

您应该在语句中添加一个default案例来处理. 简单地抛出一个.switchnIllegalArgumentException

switch(n) {
    case 1: this.max = 100;
            break;
    case 2: this.max = 150;
            break;
    case 3: this.max = 200;
            break;
    default: throw new IllegalArgumentException("Not 1, 2 or 3");
}

或者您可能有一个可以设置的合理默认值this.max

于 2016-03-29T22:08:45.563 回答