adsense

2010-05-21

java try _ cach 使用方法

使用方法
try{例外敘述}
catch{第一種例外}


例子
class test
{
public static void main (String[] args)
{
int x=10,y=0;
try
{
int result = x/y;
System.out.println("結果=" + result);
}
catch (Exception e)
{
System.out.println("分母不可為0");


}
try
{
int result = x+y;
System.out.println("1+0結果=" + result);
}
catch (Exception e) {
System.out.println("不可為0");

}
}
}

最近發現了很棒的java教學網站
java學習筆記
http://caterpillar.onlyfun.net/Gossip/JavaGossip-V1/JavaGossip.htm

沒有留言:

張貼留言