public class Demo { public static void main(String[] args) { int num = 10; System.out.println(test (num)) ; 7 public static int test (int b) { try { b += 10; return b; } catch (RuntimeException e) { } catch (Exception e2) { ] finally { b += 10; return b; } }
时间: 2024-04-27 10:21:03 浏览: 89
javaSystem.out.println()输出byte[]、char[]异常的问题详析
这段代码是有问题的,编译器会提示错误信息。
首先,在test方法中,try和catch语句块都没有返回语句,因此编译器会提示缺少返回语句的错误。另外,在finally语句块中也有一个返回语句,这样会导致try或catch语句块中的返回语句被忽略,因为finally语句块中的返回语句会覆盖try或catch语句块中的返回语句。
因此,如果想要修复这段代码,需要在finally语句块中移除返回语句,或者在try或catch语句块中添加一个返回语句。例如,可以将finally语句块中的return b;改为b += 10;。
修复后的代码如下:
public class Demo {
public static void main(String[] args) {
int num = 10;
System.out.println(test(num));
}
public static int test(int b) {
try {
b += 10;
return b;
} catch (RuntimeException e) {
} catch (Exception e2) {
} finally {
b += 10;
}
return b;
}
}
这样,输出结果为30。
阅读全文