標題:
例外處理 (五) - 自訂例外類別1
[打印本頁]
作者:
許婷芳
時間:
2019-11-22 16:50
標題:
例外處理 (五) - 自訂例外類別1
本帖最後由 許婷芳 於 2019-11-23 13:50 編輯
除了捕捉Java拋出的例外物件,還可以利用關鍵字throw自行拋出例外物件。而若拋出的例外物件非系統能自行捕捉到,譬如自訂類別的例外,則需在方法宣告列後面利用關鍵字throws註明例外類別名稱,以便在指定的方法中拋出例外。
作者:
吳孟修
時間:
2019-11-23 14:13
import java.util.*;
public class z
{
public static void main(String args[])throws MyException
{
int x,y;
Scanner s=new Scanner(System.in);
System.out.print("分子:");
x=s.nextInt();
System.out.print("分母:");
y=s.nextInt();
if(y==0)
{
throw new MyException("分母不可為零!");
}
System.out.println("此數為:"+x/y);
}
}
class MyException extends Exception
{
MyException(String str)
{
super(str);
}
}
複製代碼
作者:
吳孟書
時間:
2019-11-23 14:19
import java.util.*;
public class b{
public static void main(String args[])throws MyException
{
Scanner s=new Scanner(System.in);
int x,y;
System.out.print("輸入分子:");
x=s.nextInt();
System.out.print("輸入分母:");
y=s.nextInt();
if(y==0)
{
throw new MyException("分母不可為零!!!");
}
System.out.print(x+"/"+y+"="+(x/y));
}
}
class MyException extends Exception
{
MyException(String str)
{
super(str);
}
}
複製代碼
作者:
田宇任
時間:
2019-11-23 14:19
import java.util.*;
public class Queen
{
public static void main(String args[])throws MyException
{
int a,b;
Scanner s=new Scanner(System.in);
System.out.print("輸入分子:");
a=s.nextInt();
System.out.print("輸入分母:");
b=s.nextInt();
if(b==0)
{
throw new MyException("嘿嘿嘿~分母不可為0喔~");
}
System.out.print(a+"/"+b+"="+(a/b));
}
}
class MyException extends Exception
{
MyException (String str)
{
super(str);
}
}
複製代碼
作者:
湯郡一
時間:
2019-11-23 14:22
本帖最後由 湯郡一 於 2019-11-23 14:47 編輯
import java.util.Scanner;
public class Class2311
{
static Scanner s=new Scanner(System.in);
public static void main(String[] args) throws MyException
{
float x,y;
System.out.print("輸入分子: ");
x=s.nextFloat();
System.out.print("輸入分母: ");
y=s.nextFloat();
if(y==0)
throw new MyException("嘿嘿嘿~分母不可為零喔!");
System.out.println(x+"/"+y+"="+(x/y));
}
}
class MyException extends Exception
{
MyException(String str)
{
super(str);
}
}
複製代碼
作者:
洪寬瀧
時間:
2019-11-23 14:30
import java.util.*;
public class z
{
public static void main(String args[])throws MyException
{
int x,y;
Scanner s=new Scanner(System.in);
System.out.print("分子:");
x=s.nextInt();
System.out.print("分母:");
y=s.nextInt();
if(y==0)
{
throw new MyException("分母不可為零!");
}
System.out.println("此數為:"+x/y);
}
}
class MyException extend Exception
MyException (string gg)
{
super (gg)
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2