嗨,我试图在我的代码中进行一些小的验证,但是,当我尝试捕获大面积的文本(如下面的)时,我在 catch 上方收到错误消息,上面写着“找不到符号”有人可以指出我在正确的方向上做错了什么?任何帮助表示赞赏
try{
while (option != 0) {
}//End Loop
} catch(InputMismatchException e) {
System.out.println("\nNot a number or an integer!\n");
option = menuSystem();
}
}
}//End OF Class