在我的教科书中提到,每当你想立即结束一个 void 方法时,你可以引入 return;但是,我尝试在 eclipse 上实现它,它似乎不起作用。我试图在可变日结束该方法。我收到一条错误消息,指出我的其余代码无法访问。
public void readInput(){
Scanner myKeyboard = new Scanner(System.in);
System.out.println("Enter the day");
day = myKeyboard.nextInt();
return; //error is here
System.out.println("Enter the year");
year = myKeyboard.nextInt();
System.out.println("Enter the month");
month = myKeyboard.next();
}
我的教科书有没有忘记提到的东西!?