有关异常的趣味题,欢迎来战!!!!!
Posted suger-4
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有关异常的趣味题,欢迎来战!!!!!相关的知识,希望对你有一定的参考价值。
public class Test {
public static void main(String[] args) {
System.out.println(test4());
System.out.println("y = " + y);
}
public static String test4() {
String aa = "aa";
try {
aa = "bb";
return aa;
} catch (Exception e) {
e.printStackTrace();
} finally {
aa = "cc";
}
return aa;
}
********************************************************************************************************************************************************************************************
public class Test {
public static void main(String[] args) {
int y = test5();
}
public static int test5() {
int x = 1;
try {
System.out.println("A");
return ++ x;
} catch (Exception e) {
System.out.println("D");
} finally {
System.out.println("B");
++x;
}
System.out.println("C");
return x;
}
以上是关于有关异常的趣味题,欢迎来战!!!!!的主要内容,如果未能解决你的问题,请参考以下文章