java 错误: 需要<标识符>17
发布网友
发布时间:2023-11-05 14:59
我来回答
共3个回答
热心网友
时间:2024-12-02 22:04
class DiceGame
{
Dice dice = new Dice();
dice.get();
}
这个地方.方法的调用需要在方法里面,不是在类里面完成的
因此正确的写法是
class DiceGame
{
public void test(){
Dice dice = new Dice();
dice.get();
}
}
热心网友
时间:2024-12-02 22:04
class DiceGame
{
Dice dice = new Dice();
dice.get(); //这个地方出错 错误: 需要<标识符>}
}
//楼主,我理解你,因为我也犯过这样的错误,你的标识符怎么就//给注释了。
热心网友
时间:2024-12-02 22:04
哎呀呀。。。 LZ粗心了。。
少了个大括号"}"。。。
class DiceGame
{
Dice dice = new Dice();
dice.get(); //这个地方出错 错误: 需要<标识符>}
}