1.抛出异常的方法和调用方法处理异常
使用throw语句在方法中国抛出异常,并在同一方法内进行相应的异常处理
package practice;
public class y {
public static void main(String[] args) {
// TODO Auto-generated method stub
int a=5 ,b=0;
try {
if(b == 0)
throw new ArithmeticException();
else
System.out.println(a+"/"+b+"="+a/b);
}
catch(ArithmeticException e) {
System.out.println("异常:"+e+"被抛出了!");
e.printStackTrace();
}
}
}
求命令方式中输入的整数n的阶乘!n,并捕获可能发生的异常
package practice;
public class yy {
public static double multi (int n) { //使用throw语句在方法之中抛出异常
if(n<0)
throw new IllegalArgumentException(“求负数阶乘异常”);
double s=1;
for(int i =1;i<=n;i++) s=s * i;
return s;
}
public static void main(String[] args) {
// TODO Auto-generated method st