欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java基础之异常处理操作示例

程序员文章站 2022-10-10 19:41:07
本文实例讲述了java基础之异常处理操作。分享给大家供大家参考,具体如下: 示例代码: public class execdemo { public st...

本文实例讲述了java基础之异常处理操作。分享给大家供大家参考,具体如下:

示例代码:

public class execdemo {
  public static void main(string[] args) {
    int[] nums = new int[4];
    system.out.println("before the exception:");
    try {  //try代码块  try catch代码块可以嵌套
      try{
         nums[7] = 10;  //数组越界
         system.out.println("no exception:");
      }catch(arithmeticexception e){
         e.printstacktrace();
      }
    }catch(arithmeticexception e) { //catch代码块  多个catch块
      e.printstacktrace();  //打印异常信息
    }catch(arrayindexoutofboundsexception e){  // 捕获数组越界错误  捕获子类异常
       e.printstacktrace();
    }catch(throwable e){  //捕获超类异常 throwable是所有异常的超类
       e.printstacktrace();
    }
    system.out.println("after the exception");
  }
}

抛出异常:

public class throwdemo {
  public static void main(string[] args) {
    try {
      system.out.println("before throw:");
      throw new arithmeticexception();  //throw关键字抛出一个arithmeticexception()异常(手动抛出异常)
    } catch (arithmeticexception e) {  //捕获异常
      system.out.println("exception caught:");
    }
    system.out.println("after try{}catch{}:");
  }
}

重新抛出异常:

class rethrow {
  public static void genexception() {
    int[] numer = {2,4,6,8,10,12};
    int[] demon = {2,0,3,4,0};
      for(int i=0;i < numer.length;i++){
        try {                                   //try代码块
          system.out.println(numer[i]/demon[i]);
        } catch (arithmeticexception e) {  //多个catch()块
          system.out.println("can't dev by zero:");
        }catch(arrayindexoutofboundsexception e) {
          system.out.println("no error:");
          throw e;  //throw 重写抛出异常
        }
      }
  }
}
public class rethrowdemo{
  public static void main(string args[]) {
    try {
      rethrow.genexception();
    } catch (arrayindexoutofboundsexception e) {  //捕获重新抛出的异常
      system.out.println("error error error error error:");
    }
    finally{  //finally代码块在try catch执行完时执行的。
       system.out.println("leaving try.");
     }
  }
}

throws语句:一个方法产生自己不做处理的异常,用throws抛出到外层(谁调用,谁处理异常)

public class throwsdemo {
  public static char prompt(string str) throws java.io.ioexception{//prompt()方法产生自己不做处理的ioexception异常,抛出到外层,谁调用谁处理异常
    system.out.print(str +":");
    return (char) system.in.read();
  }
  public static void main(string[] args) {
    char ch;
    try {
      ch = prompt("enter a letter");  //prompt()可能抛出异常,
    } catch (java.io.ioexception e) {  //捕获prompt()抛出的异常
      system.out.println("ioexception occurred");
      ch = 'x';
    }
    system.out.println("you pressed:"+ ch);
  }
}

可以用一个catch()捕获多个异常:

try{

}
catch(arithmeticexception|arrayindexoutofboundsexception e){//同时捕获多个异常
}

自定义异常:

class nonintresultexception extends exception{  //自定义异常继承子exception
  int n ,d;
  nonintresultexception(int i,int j){
    n = i;
    d = j;
  }
  public string tostring() {
    return "result of "+ n +"/"+ d +" is non-integer.";
  }
}
public class customexceptiondemo {
  public static void main(string[] args) {
    int numer[] = {4,8,15,32,64,127,256,512};
    int denom[] = {2,0,4,4,0,8};
    for(int i=0;i<numer.length;i++) {
      try {
        if((numer[i]%2)!=0) {
          throw new nonintresultexception(numer[i],denom[i]);  //抛出自定义异常
        }
        system.out.println(numer[i] +"/"+ denom[i] +" is "+ numer[i]/denom[i]);
      } catch (arithmeticexception e) {  //捕获arithmeticexception异常
        system.out.println("can't divide by zero!");
      }catch (arrayindexoutofboundsexception e) { //捕获arrayindexoutofboundsexception 异常
        system.out.println("no matching element found.");
      }catch (nonintresultexception e) {  //捕获自定义异常
        system.out.println(e);
      }
    }
  }
}

更多java相关内容感兴趣的读者可查看本站专题:《java面向对象程序设计入门与进阶教程》、《java数据结构与算法教程》、《java操作dom节点技巧总结》、《java文件与目录操作技巧汇总》和《java缓存操作技巧汇总

希望本文所述对大家java程序设计有所帮助。