返回列表 發帖

例外處理 (五) - 自訂例外類別1

本帖最後由 許婷芳 於 2019-11-23 13:50 編輯

除了捕捉Java拋出的例外物件,還可以利用關鍵字throw自行拋出例外物件。而若拋出的例外物件非系統能自行捕捉到,譬如自訂類別的例外,則需在方法宣告列後面利用關鍵字throws註明例外類別名稱,以便在指定的方法中拋出例外。

  1. import java.util.*;
  2. public class z
  3. {
  4.     public static void main(String args[])throws MyException
  5.     {
  6.              int x,y;
  7.              Scanner s=new Scanner(System.in);
  8.              System.out.print("分子:");
  9.              x=s.nextInt();
  10.              System.out.print("分母:");
  11.              y=s.nextInt();
  12.              if(y==0)
  13.              {
  14.                      throw new MyException("分母不可為零!");
  15.              }
  16.              System.out.println("此數為:"+x/y);
  17.     }
  18. }
  19. class MyException extends Exception
  20. {
  21.         MyException(String str)
  22.         {
  23.                 super(str);
  24.         }
  25. }
複製代碼

TOP

  1. import java.util.*;
  2. public class b{
  3. public static void main(String args[])throws MyException
  4. {
  5.          Scanner s=new Scanner(System.in);
  6.          int x,y;
  7.          System.out.print("輸入分子:");
  8.          x=s.nextInt();         
  9.          System.out.print("輸入分母:");
  10.          y=s.nextInt();
  11.          if(y==0)
  12.          {
  13.                  throw new MyException("分母不可為零!!!");
  14.          }
  15.          System.out.print(x+"/"+y+"="+(x/y));
  16. }
  17. }
  18. class MyException extends Exception
  19. {
  20.         MyException(String str)
  21.         {
  22.                 super(str);
  23.         }
  24. }
複製代碼

TOP

  1. import java.util.*;
  2. public class Queen
  3. {
  4.         public static void main(String args[])throws MyException
  5.         {
  6.                   int a,b;
  7.       
  8.           Scanner s=new Scanner(System.in);
  9.           System.out.print("輸入分子:");
  10.           a=s.nextInt();
  11.           System.out.print("輸入分母:");
  12.           b=s.nextInt();
  13.           if(b==0)
  14.           {
  15.                   throw new MyException("嘿嘿嘿~分母不可為0喔~");
  16.           }
  17.           System.out.print(a+"/"+b+"="+(a/b));
  18.                                        
  19.         }
  20.        
  21. }
  22. class MyException extends Exception
  23. {
  24.         MyException (String str)
  25.         {
  26.                 super(str);
  27.         }
  28. }
複製代碼

TOP

本帖最後由 湯郡一 於 2019-11-23 14:47 編輯
  1.         import java.util.Scanner;
  2.         public class Class2311
  3.         {
  4.             static Scanner s=new Scanner(System.in);
  5.           
  6.             public static void main(String[] args) throws MyException
  7.             {   
  8.                 float x,y;
  9.                 System.out.print("輸入分子: ");
  10.                 x=s.nextFloat();
  11.                 System.out.print("輸入分母: ");
  12.                 y=s.nextFloat();
  13.                 if(y==0)
  14.                     throw new MyException("嘿嘿嘿~分母不可為零喔!");
  15.                 System.out.println(x+"/"+y+"="+(x/y));
  16.             }
  17.         }
  18.         class MyException extends Exception
  19.         {
  20.             MyException(String str)
  21.             {
  22.                 super(str);   
  23.             }
  24.         }
複製代碼

TOP

  1. import java.util.*;
  2. public class z
  3. {
  4.     public static void main(String args[])throws MyException
  5.     {
  6.              int x,y;
  7.              Scanner s=new Scanner(System.in);
  8.              System.out.print("分子:");
  9.              x=s.nextInt();
  10.              System.out.print("分母:");
  11.              y=s.nextInt();
  12.              if(y==0)
  13.              {
  14.                      throw new MyException("分母不可為零!");
  15.              }
  16.              System.out.println("此數為:"+x/y);
  17.     }
  18. }
  19. class MyException extend Exception

  20. MyException (string gg)
  21. {
  22. super (gg)       
  23. }

  24. }
複製代碼

TOP

返回列表