黑马程序员技术交流社区

标题: 异常的小练习题 [打印本页]

作者: 孟伟娟    时间: 2012-11-26 10:11
标题: 异常的小练习题
本帖最后由 孟伟娟 于 2012-11-26 10:12 编辑

编写能产生并能捕获ArrayIndexOutOfBoundsException异常的代码。
  1. class ArrayIndexOutOfBoundsException extends Exception{
  2.     public ArrayIndexOutOfBoundsException(String msg) {
  3.        super(msg);
  4.     }
  5. }
  6. class Demo {
  7.     public static Object array(Object[] obj,int index)throws ArrayIndexOutOfBoundsException{
  8.         if(index >= obj.length)
  9.             throw new ArrayIndexOutOfBoundsException("下标越界");
  10.        return obj[index];
  11.     }
  12. }
  13. public class Test3 {
  14.    public static void main(String[] args)throws ArrayIndexOutOfBoundsException {
  15.         String[] str = {"aa","bb","cc"};
  16.         try {
  17.              System.out.println(Demo.array(str,4));
  18.        } catch (ArrayIndexOutOfBoundsException e) {
  19.               e.printStackTrace();
  20.        }
  21.    }

  22. }
复制代码
各位大虾们可以提供更多的解决方案。谢谢!





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2