我刚开始学习Java,所以有很多问题。如果出现问题,现在我需要返回程序的开头。
public static int getchartoint() throws IOException {
int a;
try {
BufferedReader bReader = new BufferedReader(new InputStreamReader(System.in));
String k = bReader.readLine();
a = Integer.parseInt(k);
return a;
}
catch (NumberFormatException exc) {
System.out.println(exc);
return a = 0;
}
finally {
}
}
我有,我可以在正文a = 0
中写案例:main()
case 0: {
System.out.println("Your entered an incorrect number...");
}
我的问题是:我怎样才能添加一行让我准确地移动到那行代码?