骰子代码(Eclipse)中此行的多个标记

时间:2014-10-07 17:05:16

标签: java

我在Eclipse中编写这段代码,但它告诉我它有2行多个标记。我试图解决这个问题,但会出现更多标记。发生的错误在第15和第18行

public class Cup {
    private Dice d1 = new Dice();
    private Dice d2 = new Dice();

    public void roll(){
        d1.roll();
        d2.roll();
    }

    public int getvalue1(){
        return d1.getValue();
    }
    public int getvalue2(){
        return d2.getValue();
    }
    public int getSum(){
        return d1.getValue() + d2.getValue();
    }
}

2 个答案:

答案 0 :(得分:1)

可能是复制/粘贴错误,但您似乎在}方法的末尾缺少getvalue1(),并且最后还有一个。{/ p>

答案 1 :(得分:1)

直到你不显示整个代码,我无法保证出现了什么问题。将代码更改为此可能会有所帮助。分享Dice的代码。

public class Cup {
    private Dice d1 = new Dice();
    private Dice d2 = new Dice();

    public void roll(){
        d1.roll();
        d2.roll();
    }

    public int getvalue1(){
        return d1.getValue();
    }
    public int getvalue2(){
        return d2.getValue();
    }
    public int getSum(){
        return (getValue1() + getValue2());
    }
}