1、範例一
// try-catch處理例外
public class Error { public static void main(String[] args) { int num1=34,num2=0; //使用try包裹住会产生异常的代码段 try{ System.out.println(num1/num2); } //使用catch去处理对应的异常 catch(ArithmeticException error){ //处理方法 System.err.println("运算错误,除数不能为0!"); } System.out.println("程序运行结束!"); } }
##結果驗證:運算錯誤,除數不能為0!
程式運行結束!
2、範例二
import java.util.InputMismatchException; import java.util.Scanner; public class Error { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("请输入第一个数字:"); //使用try包裹住会产生异常的代码段 try{ int num1=input.nextInt(); System.out.println("请输入第二个数字:"); int num2=input.nextInt(); System.out.println(num1/num2); } //使用catch去处理对应的异常 catch(ArithmeticException error1){ //处理方法 System.err.println("运算错误,除数不能为0!"); }catch(InputMismatchException error2){ System.err.println("请输入正确的数字!"); } System.out.println("程序运行结束!"); } }
結果驗證:
##結果一:
請輸入第一個數字:123
請輸入第二個數字:
123
1
程式運行結束!
結果二:
請輸入第一個數字:123
請輸入第二個數字:
b
請輸入正確的數字!
程式運行結束!
結果三:
請輸入第一個數字:123
請輸入第二個數字:
0
運算錯誤,除數不能為0!
程式運行結束!
3、範例三
// 使用者輸入字串轉整數
3.1
public class Error { String str; public Error(String str) { this.str = str; } public String Transform(){ try{ int num = Integer.parseInt(str); }catch(NumberFormatException num){ System.out.println("字符串转整型,请输入正确的数字:"); }catch(Exception e){ } return str; } }
// 寫測試類,呼叫資料型別轉換方法,分別傳遞參數「Good!」、20
public class ErrorDemo { public static void main(String[] args) { Error er = new Error("Good!"); er.Transform(); System.out.println(er.str); } }
字串轉整數型,請輸入正確的數字:
Good!
3.2
public class Error { int num = 0; public Error() { } public Error(int num) { this.num = num; } public int TransformtoInt(String str){ try{ int num1 = Integer.parseInt(str); }catch(NumberFormatException num){ System.err.println("字符串转整型,请输入正确的数字:"); }catch(Exception error){ error.printStackTrace(); } return num; } }
import java.util.Scanner; public class ErrorDemo { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("请输入一个数字:"); String str = input.next(); Error toInt = new Error(); toInt.TransformtoInt(str); System.out.println(str); } }
驗證:
123
123
abc
字串轉整型,請輸入正確的數字:
abc
4、範例四
//[b]throws、throw拋出例外[/b]
public class Error { String sex ; public Error() { } public String getSex() { return sex; } public void setSex(String sex) throws Exception { if(sex.equals("男")|sex.equals("女")){ this.sex = sex; }else{ throw new Exception("性别必须为男或者女!"); } } }
public class ErrorDemo { public static void main(String[] args) { Error er = new Error(); try{ er.setSex("熊"); }catch(Exception error){ error.printStackTrace(); } System.out.println("程序结束"); } }
java.lang.Exception: 性別必須為男女!
at Error.setSex(Error.java:22)
at ErrorDemo.main(ErrorDemo.java:9)
#5、
自訂異常
// 建立Excption子類別繼承[b]Excption
父類別[/b]
//创建类 public class Error { String sex ; public Error() { } public String getSex() { return sex; } public void setSex(String sex) throws Exception { if(sex.equals("男")|sex.equals("女")){ this.sex = sex; }else{ throw new ExceptionDemo("性别必须为男或者女!"); } } }
//创建ExceptionDemo子类 public class ExceptionDemo extends Exception { public ExceptionDemo() { super(); } public ExceptionDemo(String message) { super(message); } }