標題:
例外處理 (二)
[打印本頁]
作者:
陳品肇
時間:
2019-8-10 15:23
標題:
例外處理 (二)
進行例外處理是不希望程式中斷。而是希望程式能捕捉錯誤並繼續執行,若錯誤是使用者輸入不正確資料所造成的,可以要求使用者輸入正確資料再繼續執行,或者不處理使用者輸入資料繼續做其他工作。
Java使用 try … catch … finally 敘述來解決例外處理,它的方式是將被監視的敘述區段寫在try大括號內,當程式執行到try內的敘述有發生錯誤時,會逐一檢查捕捉(catch)該錯誤,以便執行該catch內敘述。最後不管是否有符合catch,都會執行最後的finally敘述區段。例外處理的格式如下:
try
{
預期可能發生例外的敘述
}
catch(例外物件)
{
對應的處理程序
}
finally //可有可無
{
無論例外是否發生都會處理的程序
}
試運用無窮迴圈搭配 try...catch 語法捕捉例外, 使執行時無論發生什麼例外, 程式都不會因此而中斷. 另外使用 toString() 方法將捕捉到的例外顯示出來.
import java.util.Scanner;
public class Ch52
{
public static void main(String[] args)
{
for(;;)
{
try
{
Scanner s=new Scanner(System.in);
int x,y;
System.out.print("輸入分子: ");
x=s.nextInt();
System.out.print("輸入分母: ");
y=s.nextInt();
System.out.println(x+"/"+y+"="+(x/y));
}catch(Exception e)
{
System.out.println("程式發生錯誤!");
System.out.println("例外類別: "+e.toString());
}
System.out.println();
}
}
}
複製代碼
作者:
洪子涵
時間:
2019-8-10 17:28
import java.util.Scanner;
public class aaa {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c=new Scanner(System.in);
while(true)
{
try
{
Scanner s=new Scanner(System.in);
int x,y;
System.out.print("輸入分子: ");
x=c.nextInt();
System.out.print("輸入分母: ");
y=c.nextInt();
System.out.println(x+"/"+y+"="+(x/y));
}catch(Exception e)
{
System.out.println("程式錯誤");
System.out.println("例外類別: "+e.toString());
}
System.out.println();
}
}
}
複製代碼
作者:
陳柏霖
時間:
2019-8-10 17:30
import java.util.Scanner;
public class Hello {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner s=new Scanner(System.in);
try
{
int x ,y;
System.out.print("請輸入分子:");
x=s.nextInt();
System.out.print("請輸入分母:");
y=s.nextInt();
System.out.println("x/y="+(x/y));
}catch(Exception tim)
{
System.out.println("出錯了");
System.out.println("在"+tim.toString()+" 錯了");
}finally
{
System.out.println("?!?!");
}
}
}
複製代碼
作者:
洪藜芸
時間:
2019-8-10 17:30
import java.util.Scanner;
public class Dc
{
public static void main(String args[])
{
try{
Scanner a=new Scanner(System.in);
int x,y;
System.out.println("請輸入分子x");
x= a.nextInt();
System.out.println("請輸入分母y");
y= a.nextInt();
System.out.print("x/y="+(x/y));
}
catch(Exception exc)
{
System.out.println("有誤");
System.out.println("例外:"+exc.toString());
}
}
}
複製代碼
作者:
戴唯陞
時間:
2019-8-10 17:30
import java.util.Scanner;
public class java01 {
public static void main(String[] args) {
for (;;)
{
try
{
Scanner s = new Scanner(System.in);
int x, y;
System.out.print("輸入分子");
x = s.nextInt();
System.out.print("輸入分母");
y = s.nextInt();
System.out.println(x + "/" + y + "=" + (x / y));
} catch (Exception e) {
System.out.println("程式發生錯誤");
System.out.println("例外類別"+e.toString());
}
System.out.println();
}
}
}
複製代碼
作者:
戴偉宸
時間:
2019-8-10 17:30
import java.util.Scanner;
public class work
{
public static void main(String[] args)
{
for(;;)
{
try
{
Scanner s=new Scanner(System.in);
int x,y;
System.out.print("輸入分子: ");
x=s.nextInt();
System.out.print("輸入分母: ");
y=s.nextInt();
System.out.println(x+"/"+y+"="+(x/y));
}catch(Exception e)
{
System.out.println("程式發生錯誤!");
System.out.println("例外類別: "+e.toString());
}
System.out.println();
}
}
}
複製代碼
作者:
章幼莛
時間:
2019-8-10 17:31
import java.util.Scanner;
public class ch04
{
public static void main(String[] args)
{
for(;;)
{
try
{
Scanner s=new Scanner(System.in);
int x,y;
System.out.print("輸入分子: ");
x=s.nextInt();
System.out.print("輸入分母: ");
y=s.nextInt();
System.out.println(x+"/"+y+"="+(x/y));
}catch(Exception e)
{
System.out.println("程式發生錯誤!");
System.out.println("例外類別: "+e.toString());
}
System.out.println();
}
}
}
複製代碼
回復
1#
陳品肇
作者:
戴安利
時間:
2019-8-10 17:32
import java.util.Scanner;
public class Haha
{
public static void main(String args[])
{
for(;;)
{
try
{
Scanner s = new Scanner(System.in);
int x, y;
System.out.print("輸入分子: ");
x = s.nextInt();
System.out.print("輸入分母: ");
y = s.nextInt();
System.out.println(x+"/"+y+"="+(x/y));
}
catch(Exception e)
{
System.out.println("程式發生錯誤!");
System.out.println("例外類別: "+e.toString());
}
System.out.println();
}
}
}
複製代碼
作者:
陳智鈞
時間:
2019-8-17 15:35
import java.util.Scanner;
public class Ch01
{
public static void main(String[] args)
{
for(;;)
{
Scanner s=new Scanner(System.in);
try
{
int x,y;
System.out.print("輸入分子: ");
x=s.nextInt();
System.out.print("輸入分母: ");
y=s.nextInt();
System.out.println(x+"/"+y+"="+(x/y));
}
catch(Exception e)
{
System.out.println("程式發生錯誤!");
System.out.println("例外類別: "+e.toString());
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2