早教吧作业答案频道 -->其他-->
JAVA题目求解10、下面叙述正确的是()A、类就是对象,对象就是类。B、boolean型是一种简单数据类型。C、实现一个接口必需实现接口的所有方法。D、抽
题目详情
JAVA题目求解
10、下面叙述正确的是 ( )
A、类就是对象,对象就是类。
B、boolean型是一种简单数据类型。
C、实现一个接口必需实现接口的所有方法。
D、抽象类中的方法都是没有方法体的抽象方法。
10、下面叙述正确的是 ( )
A、类就是对象,对象就是类。
B、boolean型是一种简单数据类型。
C、实现一个接口必需实现接口的所有方法。
D、抽象类中的方法都是没有方法体的抽象方法。
▼优质解答
答案和解析
第一题:
public class ExArray1{ public static void main(String[] args) { int[] []t={{1,2,3},{4,5}}; try { System.out.print(t[1][2]); } //错误原因:catch必须紧跟try语句块 //System.out.print("after try block"); catch (Exception e) { System.out.print(e.toString()); } System.out.print("Error"); }}运行效果:
java.lang.ArrayIndexOutOfBoundsException: 2Error
第二题:
public class ExArray2 { public static void main(String[] args) { int[][] t = { { 1, 2, 3 }, { 4, 5 } }; try { System.out.print(t[1][3]); } catch (Exception e) { System.out.println("程序出现了数组下标越界异常"); } }} 效果:
程序出现了数组下标越界异常
第二题,第二个要求:
public class ExArray2 { public void test() throws ArrayIndexOutOfBoundsException { int[][] t = { { 1, 2, 3 }, { 4, 5 } }; System.out.print(t[1][3]); } public static void main(String[] args) { ExArray2 array2 = new ExArray2(); try { array2.test(); } catch (ArrayIndexOutOfBoundsException e) { System.out.println("程序出现了数组下标越界异常"); } }} 效果同第一个。
第三题:(请看注释区域)
public class TryCatchFinally1 { public static void main(String args[]) { // 调用可能产生异常的方法Proc() try { TryCatchFinally1.Proc(0); TryCatchFinally1.Proc(1); } // 捕获异常,并对异常进行处理 catch (ArithmeticException e) { System.out.println("捕获:" + e + "; 理由:" + e.getMessage()); } catch (Exception e) { System.out.println("Will not be executed"); } } // 定义可能产生异常的Proc()方法,并声明异常 static void Proc(int sel) throws ArithmeticException { System.out.println("----- 在为" + sel + "情况下 -----"); if (sel == 0) { System.out.println("没有异常捕获"); } else if (sel == 1) { int i = 0; /** * 在这里出现了异常,也就为1的情况下,除数为0了 * * 而Proc这个方法并没有对异常进行处理,只是又抛了出去 * * 所以就在调用的时候对异常进行了处理 * * 也就是main方法里对这个方法的调用 */ int j = 4 / i; } }} 第四题:
public class TestException { public static int[] arr=new int[]{2,0}; public static void main(String args[]) { TestException.Proc(0); TestException.Proc(1); } public static void Proc(int i){ if(i==0){ try { System.out.println(arr[2]); } catch (ArrayIndexOutOfBoundsException e) { //数组越界 System.out.println("捕获:"+e+";"+"理由:"+e); } }else if(i==1){ try { System.out.println(arr[0] / arr[1]); } catch (ArithmeticException e) { //数学运算错误 System.out.println("捕获:"+e+";"+"理由:"+e); } } }} 效果:
捕获:java.lang.ArrayIndexOutOfBoundsException: 2;理由:java.lang.ArrayIndexOutOfBoundsException: 2
捕获:java.lang.ArithmeticException: / by zero;理由:java.lang.ArithmeticException: / by zero
希望能帮到你,望采纳。
以上回答你满意么?
是否可以解决您的问题?
public class ExArray1{ public static void main(String[] args) { int[] []t={{1,2,3},{4,5}}; try { System.out.print(t[1][2]); } //错误原因:catch必须紧跟try语句块 //System.out.print("after try block"); catch (Exception e) { System.out.print(e.toString()); } System.out.print("Error"); }}运行效果:
java.lang.ArrayIndexOutOfBoundsException: 2Error
第二题:
public class ExArray2 { public static void main(String[] args) { int[][] t = { { 1, 2, 3 }, { 4, 5 } }; try { System.out.print(t[1][3]); } catch (Exception e) { System.out.println("程序出现了数组下标越界异常"); } }} 效果:
程序出现了数组下标越界异常
第二题,第二个要求:
public class ExArray2 { public void test() throws ArrayIndexOutOfBoundsException { int[][] t = { { 1, 2, 3 }, { 4, 5 } }; System.out.print(t[1][3]); } public static void main(String[] args) { ExArray2 array2 = new ExArray2(); try { array2.test(); } catch (ArrayIndexOutOfBoundsException e) { System.out.println("程序出现了数组下标越界异常"); } }} 效果同第一个。
第三题:(请看注释区域)
public class TryCatchFinally1 { public static void main(String args[]) { // 调用可能产生异常的方法Proc() try { TryCatchFinally1.Proc(0); TryCatchFinally1.Proc(1); } // 捕获异常,并对异常进行处理 catch (ArithmeticException e) { System.out.println("捕获:" + e + "; 理由:" + e.getMessage()); } catch (Exception e) { System.out.println("Will not be executed"); } } // 定义可能产生异常的Proc()方法,并声明异常 static void Proc(int sel) throws ArithmeticException { System.out.println("----- 在为" + sel + "情况下 -----"); if (sel == 0) { System.out.println("没有异常捕获"); } else if (sel == 1) { int i = 0; /** * 在这里出现了异常,也就为1的情况下,除数为0了 * * 而Proc这个方法并没有对异常进行处理,只是又抛了出去 * * 所以就在调用的时候对异常进行了处理 * * 也就是main方法里对这个方法的调用 */ int j = 4 / i; } }} 第四题:
public class TestException { public static int[] arr=new int[]{2,0}; public static void main(String args[]) { TestException.Proc(0); TestException.Proc(1); } public static void Proc(int i){ if(i==0){ try { System.out.println(arr[2]); } catch (ArrayIndexOutOfBoundsException e) { //数组越界 System.out.println("捕获:"+e+";"+"理由:"+e); } }else if(i==1){ try { System.out.println(arr[0] / arr[1]); } catch (ArithmeticException e) { //数学运算错误 System.out.println("捕获:"+e+";"+"理由:"+e); } } }} 效果:
捕获:java.lang.ArrayIndexOutOfBoundsException: 2;理由:java.lang.ArrayIndexOutOfBoundsException: 2
捕获:java.lang.ArithmeticException: / by zero;理由:java.lang.ArithmeticException: / by zero
希望能帮到你,望采纳。
以上回答你满意么?
是否可以解决您的问题?
看了JAVA题目求解10、下面叙述...的网友还看了以下:
已知圆O的半径为1,点P与O的距离为d,且方程“埃克斯”-2“埃克斯”+d=0有实数根,则点P在圆 2020-04-27 …
已知圆O的半径为1,点P到圆心O的距离为d,若关于x的方程x^2-2x+d=0有实根,则点P(A在 2020-04-27 …
关于x的方程|x^2/x-1|=a仅有两个不同的实根.则实数的取值范围是(A)a>0(B)a≥4( 2020-06-16 …
已知方程x~2+ax+b=0,2+cx+d=0无实数根判定方程2x~2+(a+c)x+(b+d)= 2020-07-28 …
已知四个集合:A={m|m=(2k+1)π,k属于z}B={a|方程x²-ax+1=0无实根}C= 2020-08-01 …
试述实验室证明浓度对化学平衡影响实验过程.反应原理(用离子方程式表示):操作步骤及现象:实验步骤实验 2020-11-02 …
下述实验不能达到预期实验目的的是序号实验内容实验目的A室温下,用pH试纸测定浓度为0.1mol·L- 2020-11-23 …
根据下面的描述,在平面图上表示出各场所的位置.(0)实验小学在s心广场的南偏西50°方向0500米处 2021-01-02 …
想问道..可爱到缺德的题~1---X的平方+2X-M+1=0没有实根,求证方程X的平方+MX=1-2 2021-01-09 …
给出下列表述:①联合国常任理事国②充分接近2的实数的全体;③方程x2+x-1=0的实数根④全国著名的 2021-01-12 …