首页 > 代码库 > 0923异常——练习题目作业
0923异常——练习题目作业
package exception;public class TestException { public static void main(String[] args) { for(int i=0;i<4;i++) { try { int k; switch(i) { case 0: int zero=0;k=911/zero;break; // case 1: int b[]=null;k=b[0];break;// case 2: int c[]=new int[2];k=c[9];break;// case 3: char ch="abc".charAt(99);break; } } catch(Exception e) { System.out.println("分母不能为0 "+"错误提示如下"); e.printStackTrace(); } } } }
package exception;public class TestException { public static void main(String[] args) { for(int i=0;i<4;i++) { try { int k; switch(i) { // case 0: int zero=0;k=911/zero;break; case 1: int b[]=null;k=b[0];break;// case 2: int c[]=new int[2];k=c[9];break;// case 3: char ch="abc".charAt(99);break; } } catch(Exception e) { System.out.println("空指针 "+"错误提示如下"); e.printStackTrace(); }
package exception;public class TestException { public static void main(String[] args) { for(int i=0;i<4;i++) { try { int k; switch(i) { // case 0: int zero=0;k=911/zero;break; // case 1: int b[]=null;k=b[0];break; case 2: int c[]=new int[2];k=c[9];break;// case 3: char ch="abc".charAt(99);break; } } catch(Exception e) { System.out.println("超出数组长度 "+"错误提示如下"); e.printStackTrace(); }
package exception;public class TestException { public static void main(String[] args) { for(int i=0;i<4;i++) { try { int k; switch(i) { // case 0: int zero=0;k=911/zero;break; // case 1: int b[]=null;k=b[0];break;// case 2: int c[]=new int[2];k=c[9];break; case 3: char ch="abc".charAt(99);break; } } catch(Exception e) { System.out.println("输入的字符串错误 "+"错误提示如下"); e.printStackTrace(); } } } }
0923异常——练习题目作业
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。