问答题
简答题
请简述final和finally的区别,并说明各自的用途。
【参考答案】
F.inally用于异常捕捉,无论是否会报异常,finally语句块都会执行。
F.inal修饰变量,该变量就......
(↓↓↓ 点击下方‘点击查看答案’看完整答案 ↓↓↓)
点击查看答案
相关考题
-
多项选择题
下面哪段语法执行正确()
A. String s = "Gone with the wind";String t = " good ";String k = s + t;
B. String s = "Gone with the wind";String t; t = s[3] + "one";
C. String s = "Gone with the wind";String standard = s.toUpperCase();
D. String s = "home directory";String t = s - "directory"; -
多项选择题
关于JAVA中数据类型描述正确的是()
A.double型是基本数据类型
B.Double型是基本数据类型
C.double型是引用数据类型
D.Double型是引用数据类型 -
单项选择题
如下代码: public void Test() { try { oneMethod(); System.out.println("condition 1"); } catch (ArrayIndexOutOfBoundsException e) { System.out.println("condition 2"); } catch(Exception e) { System.out.println("condition 3"); } finally { System.out.println("finally"); } } 如果oneMethod正常运行,则输出结果中是?()
A. condition 1 finally
B. condition 2 finally
C. condition 3 finally
D. finally
